Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re^4: Passing arrayref to Moose attributes

by tobyink (Canon)
on Apr 21, 2013 at 08:16 UTC ( [id://1029736]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Passing arrayref to Moose attributes
in thread Passing arrayref to Moo attributes

Under Moose you need to add traits => ["Array"] to the attribute declaration. See Moose::Meta::Attribute::Native::Trait::Array.

With Moo you'd use handles_via => "Array" but you'd need to install MooX::HandlesVia first.

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name

Replies are listed 'Best First'.
Re^5: Passing arrayref to Moose attributes
by davido (Cardinal) on Apr 21, 2013 at 14:14 UTC

    Thanks! :)


    Dave

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (4)
As of 2024-04-24 18:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found