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