Help for this page

Select Code to Download


  1. or download this
    somesub(); # just looking current namespace
    Foo::Bar::somesub(); # obviously, looking in Foo::Bar
    ...
    
    $object->somesub(); # will understand that it's a Foo::Bar's sub
    
  2. or download this
    Foo::Bar->new()->some_geter()->somethingelse();
    
  3. or download this
    #@Returns Foo::Bar
    sub somefunc{
    ...
    }