namespace lib_call { /** */ export function convey ( value : any, functions : Array ) : any { let result : any = value; functions.forEach ( function_ => { result = function_(result); } ); return result; } }