core/source/helpers/call.php
2025-09-09 10:07:53 +00:00

22 lines
153 B
PHP

<?php
namespace davigil\helpers\call;
/**
*/
function convey(
$x,
$fs
)
{
$y = $x;
foreach ($fs as $f)
{
$y = ($f)($y);
}
return $y;
}
?>