Help for this page

Select Code to Download


  1. or download this
        require Alzabo::MethodMaker;
        Alzabo::MethodMaker->import( name_maker => \@name_maker );
    
  2. or download this
        package Alzabo::MethodMaker;
        sub import {
            ...
        }
        \&import;
    
  3. or download this
        (require Alzabo::MethodMaker)->(
            name_maker => \&name_maker,
        );
    
  4. or download this
        use Alzabo::MethodMaker(
            name_maker => sub {
                ...
            },
        );
    
  5. or download this
        use Alzabo::MethodMaker qw( makeMethods );
        makeMethods(
            name_maker => \&name_maker,
        );