NAME
Util::Medley::List - utility methods for working with lists
VERSION
version 0.004
use base 'Exporter'; our @EXPORT = qw(); # Symbols to autoexport (:DEFAULT tag) our @EXPORT_OK = qw(list2map min undefs2strs uniq); # Symbols to export on request our %EXPORT_TAGS = ( # Define names for sets of symbols all => \@EXPORT_OK, );
min
Just a passthrough to List::Util::min()
uniq
Just a passthrough to List::Util::uniq()