Help for this page

Select Code to Download


  1. or download this
    my $func_Ref = \&$self->isInst;
    foreach my $var ( @something ) {
        &$func_Ref( $self, $var )
    }
    
  2. or download this
    my $func_Ref = \&$self->isInst;
    foreach my $var ( @something ) {
        $func_Ref->( $self, $var );
    }
    
  3. or download this
    my $func_Ref = \&$self->isInst;
    
    $func_Ref->( $self, $_ ) for @something;