Class Function1
Located at easycore/Ehex.php
public static
Closure
|
|
public static
mixed
|
#
runMultipleFunctionOnResult( mixed $functions )
Return a new function that composes multiple functions into a single callable. |
public static
Closure
|
|
public static
Closure
|
#
runAndHold( $function )
Curries a function to take arguments in multiple calls. $curriedAdd = Function1::runAndHold( function ($a, $b) { return $a + $b; } ); |