コード例 #1
0
ファイル: FileInto.php プロジェクト: bahulneel/phonon
 public static function into($empty, $xf, $coll)
 {
     $f = function ($fileResource, $x) {
         fputs($fileResource, $x);
         return $fileResource;
     };
     return Transducers::transduce($xf, $f, $empty, $coll);
 }
コード例 #2
0
ファイル: StringInto.php プロジェクト: bahulneel/phonon
 public static function into($empty, $xf, $coll)
 {
     $f = function ($str, $x) {
         $str .= $x;
         return $str;
     };
     return Transducers::transduce($xf, $f, $empty, $coll);
 }