Help for this page

Select Code to Download


  1. or download this
    return @{$self->{$slot}} if wantarray;
    return $self->{$slot};
    
  2. or download this
    #######################################################
    # generate the generic accessor methods using closures:
    ...
            return $self->{$slot};
        };
    }