예제 #1
0
파일: Take.php 프로젝트: bahulneel/phonon
 public function step($result, $input)
 {
     if ($this->n > 0) {
         $result = $this->xf->step($result, $input);
     } else {
         $result = Transducers::ensureReduced($result);
     }
     $this->n -= 1;
     return $result;
 }