Help for this page

Select Code to Download


  1. or download this
    @process = qw/ arg1 arg2 arg3 arg4 arg5 /;
    foreach ( @process ) {
        if ( $object->method( $_ ) ) {
            #   ... do stuff
        }
    }
    
  2. or download this
    foreach ( $object->getProcess() ) {
        if ( $object->method( $_ ) ) {
            #   ... do stuff
        }
    }