NAME Language::Functional - a module which makes Perl slightly more functional SYNOPSIS use Language::Functional ':all'; print 'The first ten primes are: ', show(take(10, filter { prime(shift) } integers)), "\n"; DESCRIPTION Perl already contains some functional-like functions, such as map and grep. The purpose of this module is to add other functional-like functions to Perl, such as foldl and fol