Example #1
0
 public function flatten()
 {
     $result = new self();
     foreach ($this->flattenGen() as $value) {
         $result->pushToEnd($value);
     }
     return $result;
 }