注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
NAME Util::Any - to export any utilities and to create your own utility module SYNOPSIS use Util:... NAME Util::Any - to export any utilities and to create your own utility module SYNOPSIS use Util::Any -list; # you can import any functions of List::Util and List::MoreUtils print uniq qw/1, 0, 1, 2, 3, 3/; If you want to choose functions use Util::Any -list => ['uniq']; # you can import uniq function only, not import other functions print uniq qw/1, 0, 1, 2, 3, 3/; If you want to import All kind