core/source/helpers/call.php

22 lines
153 B
PHP
Raw Normal View History

2025-09-09 12:07:53 +02:00
<?php
namespace davigil\helpers\call;
/**
*/
function convey(
$x,
$fs
)
{
$y = $x;
foreach ($fs as $f)
{
$y = ($f)($y);
}
return $y;
}
?>