Help for this page

Select Code to Download


  1. or download this
    The smartmatch implicitly dereferences any non-blessed hash or array r
    +eference, so the HASH and ARRAY entries apply in those cases.
    
  2. or download this
    Right operand is an ARRAY:
    
    ...
    
    Any       ARRAY      smartmatch each ARRAY element
                   like: grep { Any ~~ $_ } ARRAY
    
  3. or download this
    Num       nummy       numeric equality
                    like: Num == nummy
    
  4. or download this
    Either an actual number, or a string that looks like one.
    
  5. or download this
    grep { $selection ~~ $_ } (5103)
    
  6. or download this
    $selection == 5103
    
  7. or download this
    use constant FOO => 42;
    
  8. or download this
    sub FOO() { return 42; }