Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re^2: Use method/function signatures with Perl

by Ovid (Cardinal)
on Dec 06, 2004 at 01:44 UTC ( [id://412561]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
        multimethod find => (Container, Query) 
                         => sub { $_[0]->findquery($_[1]) };
    
    ...
    
        multimethod find => (Index, Word)      
                         => sub { $_[0]->lookup_word($_[1]) };
    
  2. or download this
        sub find(Container $container, Query $query) } 
            $container->findquery($query);
        };
    ...
        sub find(Index $index, Word $word) {      
            $index->lookup_word($word) };
        }
    

Log In?
Username:
Password:

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

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

    No recent polls found