map { $_ ? $_ : () } #### map { if (is_true($_)) { $_; } else { (); } } #### map { length($_) ? $_ : () } #### grep { length($_) }