Skip to content

Instantly share code, notes, and snippets.

@fatadz
Created May 12, 2019 09:29
Show Gist options
  • Save fatadz/5660df0e74d6eeed0eef3b9bad483d53 to your computer and use it in GitHub Desktop.
Save fatadz/5660df0e74d6eeed0eef3b9bad483d53 to your computer and use it in GitHub Desktop.
pipeline
<?php
class Pipeline
{
public static function make_pipeline()
{
$funcs = func_get_args();
return function($arg) use ($funcs)
{
foreach($funcs as $function) {
if(!isset($value))
$value = $function($arg);
else
$value = $function($value);
}
return $value;
};
}
}
$fun = Pipeline::make_pipeline(
function($x) { return $x * 3; },
function($x) { return $x + 1; },
function($x) { return $x / 2; });
echo $fun(3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment