Help for this page

Select Code to Download


  1. or download this
    sub new {
        my ($class, $str, @lists) = @_;
        my @list = map {'ARRAY' eq ref $_ ? @$_ : $_} @lists;
        return bless {str => $str, list => \@list}, $class;
    }
    
  2. or download this
    sub catSF {
        my ($lhs, $rhs, $inv) = @_;
    
        ($lhs, $rhs) = ($rhs, $lhs) if $inv;