Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re^2: Moose and default values

by morgon (Priest)
on Feb 20, 2013 at 22:32 UTC ( [id://1019854]=note: print w/replies, xml ) Need Help??


in reply to Re: Moose and default values
in thread Moose and default values

Nice, but why does it live in "PerlX" and not in "Moose" or "MooseX"?

Replies are listed 'Best First'.
Re^3: Moose and default values
by choroba (Cardinal) on Feb 20, 2013 at 22:34 UTC
    Probably you can use it outside Moose, too.
    لսႽ† ᥲᥒ⚪⟊Ⴙᘓᖇ Ꮅᘓᖇ⎱ Ⴙᥲ𝇋ƙᘓᖇ

      Indeed; it has no ties to Moose. It's simply a function that takes a list and returns a (possibly smaller) list. While it's handy to use it with Moose/Mouse/Moo constructors, it can be used with any functions that take a list of key-value pairs that you want to filter out undefs from.

      package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name
        It's nice (and only 10 lines of code :-=).

        But say I now wanted not only undefs but everything that is false (e.g. also an empty string) to trigger the default?

        Does Moose not have any mechanics for that?

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1019854]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (5)
As of 2024-04-25 17:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found