Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: Enumerating all attributes of a Moo object

by frozenwithjoy (Priest)
on Jul 08, 2013 at 22:37 UTC ( [id://1043202]=note: print w/replies, xml ) Need Help??


in reply to Enumerating all attributes of a Moo object

Moo(se) objects are essentially hashrefs, so you can just do this:

print "$_\n" for keys %{$moo_object};

Replies are listed 'Best First'.
Re^2: Enumerating all attributes of a Moo object
by zwon (Abbot) on Jul 09, 2013 at 16:51 UTC
    Note, that this will not show attributes that are not set:
    use 5.010; use strict; use warnings; { package Foo; use Moose; has bar => ( is => 'rw' ); has baz => ( is => 'rw' ); } my $foo = Foo->new( bar => 1 ); say join "\n", keys %$foo; __END__ bar
Re^2: Enumerating all attributes of a Moo object
by Smonff (Scribe) on Oct 19, 2020 at 19:20 UTC

    Thanks for this, it was very educative.

    🌸

Log In?
Username:
Password:

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

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

    No recent polls found