@@ -31,14 +31,14 @@ |
||
| 31 | 31 | public function filter(callable $callback) |
| 32 | 32 | { |
| 33 | 33 | return new Self( |
| 34 | - Fp\filter($callback, $this->values()) |
|
| 34 | + Fp\filter($callback, $this->values()) |
|
| 35 | 35 | ); |
| 36 | 36 | } |
| 37 | 37 | |
| 38 | 38 | public function transduce(callable $transducers, Fp\Reducer\Reducer $reducer, $init = null) |
| 39 | 39 | { |
| 40 | 40 | return new Self( |
| 41 | - Fp\transduce($transducers, $reducer, $this->values(), $init) |
|
| 41 | + Fp\transduce($transducers, $reducer, $this->values(), $init) |
|
| 42 | 42 | ); |
| 43 | 43 | } |
| 44 | 44 | |