in reply to sub any
You could also manually import it to another name
use List::MoreUtils qw( ); BEGIN { *any_of = \&List::MoreUtils::any; } if (any_of ...) { ... }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: sub any
by will_ (Scribe) on Apr 25, 2013 at 13:19 UTC |