Help for this page

Select Code to Download


  1. or download this
    map { $_ ? $_ : () }
    
  2. or download this
    map {
      if (is_true($_)) {
    ...
        ();
      }
    }
    
  3. or download this
    map { length($_) ? $_ : () }
    
  4. or download this
    grep { length($_) }