NAME

FP::Combinators - function combinators

SYNOPSIS

use FP::Ops 'div';
use FP::Combinators 'flip';

TEST { div 2,3 } 2/3;
TEST { flip(\&div)-> (2,3) } 3/2;

DESCRIPTION

"A combinator is a higher-order function that uses only function
application and earlier defined combinators to define a result from
its arguments."

https://en.wikipedia.org/wiki/Combinator

SEE ALSO

FP::Optional