Help for this page

Select Code to Download


  1. or download this
    [ $arrayref ] => sub { something },  # if it handled arrayrefs as arra
    +yrefs
    
  2. or download this
    $arrayref => sub { something } ,     # treat $arrayref as a list of te
    +sts
    
  3. or download this
    # instead of
    [ $arrayref, 'foo' ] => sub { something },
    # do this
    $arrayref => sub { Case::resume() },
    [ 'foo' ] => sub { something },