├── .gitignore ├── History.md ├── LICENSE ├── README.md ├── pack.pl ├── prolog ├── lazy_findall.pl ├── lines.pl ├── list_util.pl └── nblist.pl └── t ├── call_ended.pl ├── cycle.pl ├── drop.pl ├── drop_while.pl ├── group_by.pl ├── group_with.pl ├── iterate.pl ├── keysort_r.pl ├── lazy_findall.pl ├── lazy_include.pl ├── lazy_maplist.pl ├── lines.pl ├── lines.txt ├── map_include.pl ├── maximum.pl ├── minimum.pl ├── msort_r.pl ├── oneof.pl ├── positive_integers.pl ├── repeat.pl ├── replicate.pl ├── sort_r.pl ├── sort_with.pl ├── span.pl ├── split.pl ├── split_at.pl ├── take.pl ├── take_while.pl └── xfy_list.pl /.gitignore: -------------------------------------------------------------------------------- 1 | doc/ 2 | list_util-*.tgz 3 | *~ 4 | *.swp 5 | dev.pl 6 | .tags 7 | -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/History.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/README.md -------------------------------------------------------------------------------- /pack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/pack.pl -------------------------------------------------------------------------------- /prolog/lazy_findall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/prolog/lazy_findall.pl -------------------------------------------------------------------------------- /prolog/lines.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/prolog/lines.pl -------------------------------------------------------------------------------- /prolog/list_util.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/prolog/list_util.pl -------------------------------------------------------------------------------- /prolog/nblist.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/prolog/nblist.pl -------------------------------------------------------------------------------- /t/call_ended.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/t/call_ended.pl -------------------------------------------------------------------------------- /t/cycle.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/t/cycle.pl -------------------------------------------------------------------------------- /t/drop.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/t/drop.pl -------------------------------------------------------------------------------- /t/drop_while.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/t/drop_while.pl -------------------------------------------------------------------------------- /t/group_by.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/t/group_by.pl -------------------------------------------------------------------------------- /t/group_with.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/t/group_with.pl -------------------------------------------------------------------------------- /t/iterate.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/t/iterate.pl -------------------------------------------------------------------------------- /t/keysort_r.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/t/keysort_r.pl -------------------------------------------------------------------------------- /t/lazy_findall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/t/lazy_findall.pl -------------------------------------------------------------------------------- /t/lazy_include.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/t/lazy_include.pl -------------------------------------------------------------------------------- /t/lazy_maplist.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/t/lazy_maplist.pl -------------------------------------------------------------------------------- /t/lines.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/t/lines.pl -------------------------------------------------------------------------------- /t/lines.txt: -------------------------------------------------------------------------------- 1 | alpha 2 | beta 3 | gamma 4 | delta 5 | -------------------------------------------------------------------------------- /t/map_include.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/t/map_include.pl -------------------------------------------------------------------------------- /t/maximum.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/t/maximum.pl -------------------------------------------------------------------------------- /t/minimum.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/t/minimum.pl -------------------------------------------------------------------------------- /t/msort_r.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/t/msort_r.pl -------------------------------------------------------------------------------- /t/oneof.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/t/oneof.pl -------------------------------------------------------------------------------- /t/positive_integers.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/t/positive_integers.pl -------------------------------------------------------------------------------- /t/repeat.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/t/repeat.pl -------------------------------------------------------------------------------- /t/replicate.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/t/replicate.pl -------------------------------------------------------------------------------- /t/sort_r.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/t/sort_r.pl -------------------------------------------------------------------------------- /t/sort_with.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/t/sort_with.pl -------------------------------------------------------------------------------- /t/span.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/t/span.pl -------------------------------------------------------------------------------- /t/split.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/t/split.pl -------------------------------------------------------------------------------- /t/split_at.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/t/split_at.pl -------------------------------------------------------------------------------- /t/take.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/t/take.pl -------------------------------------------------------------------------------- /t/take_while.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/t/take_while.pl -------------------------------------------------------------------------------- /t/xfy_list.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mndrix/list_util/HEAD/t/xfy_list.pl --------------------------------------------------------------------------------