Help for this page

Select Code to Download


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