Help for this page

Select Code to Download


  1. or download this
    for( $self->{x} ) {
        # Do stuff to $_
    }
    
  2. or download this
    my $x= aliasOf($self->{x});
  3. or download this
    for my $x (  $self->{x}  ) {
        # Do stuff to $x
    }