Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Accessing list of package names in a module

by FreakyGreenLeaky (Sexton)
on Nov 20, 2008 at 09:17 UTC ( [id://724825]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    package Util::Stuff;
    use strict;
    ...
    ...
    1;
    
  2. or download this
    Util::Stuff:aaa1
    Util::Stuff:aaa2
    Util::Stuff:aaa3
    
  3. or download this
    use Util::Stuff;
    
    my $temp1 = Util::Stuff::aaa1->flag;
    my $temp2 = Util::Stuff::aaa2->flag;
    my $temp3 = Util::Stuff::aaa3->flag;
    
  4. or download this
    use Util::Stuff;
    
    ...
    foreach my $name (@names) {
        push @temp, $name->flag;'
    }
    

Log In?
Username:
Password:

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

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

    No recent polls found