Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: perspective and object-disorientation

by MarkM (Curate)
on Jan 17, 2003 at 23:29 UTC ( [id://227862]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $object = Class1->new;
    bless $object, 'Class2';
    
  2. or download this
    my @people_in_room = grep {$_->isa('Person')} $room->contained_objects
    +;
    my @artists_in_room;
    
    ...
        push(@artists_in_room, $person)
            if grep {$_->isa('Artist')} $person->professional_roles;
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (6)
As of 2024-04-19 15:16 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found