タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

Perlとecumerableに関するcho45のブックマーク (2)

  • List::Util

    NAME List::Util - A selection of general-utility list subroutines SYNOPSIS use List::Util qw( reduce any all none notall first reductions max maxstr min minstr product sum sum0 pairs unpairs pairkeys pairvalues pairfirst pairgrep pairmap shuffle uniq uniqint uniqnum uniqstr head tail zip mesh ); DESCRIPTION List::Util contains a selection of subroutines that people have expressed would be nice to

    List::Util
  • List::MoreUtils

    NAME List::MoreUtils - Provide the stuff missing in List::Util SYNOPSIS # import specific functions use List::MoreUtils qw(any uniq); if ( any { /foo/ } uniq @has_duplicates ) { # do stuff } # import everything use List::MoreUtils ':all'; # import by API # has "original" any/all/none/notall behavior use List::MoreUtils ':like_0.22'; # 0.22 + bsearch use List::MoreUtils ':like_0.24'; # has "simplif

    List::MoreUtils
  • 1