@@ -19,8 +19,7 @@ |
||
19 | 19 | /** |
20 | 20 | * Make an iterator that applies $strategy to every entry in this iterable |
21 | 21 | * |
22 | - * @param null|string|\Closure $strategy |
|
23 | - * @param array|string|\Iterator $iterable2 |
|
22 | + * @param \Closure $strategy |
|
24 | 23 | * @return Itertools\lib\MapIterator |
25 | 24 | * |
26 | 25 | * @see Itertools\lib\Traits\MapTrait::map |
@@ -19,7 +19,6 @@ |
||
19 | 19 | /** |
20 | 20 | * Reduce an iterator to a single value |
21 | 21 | * |
22 | - * @param array|string|\Iterator $iterable |
|
23 | 22 | * @param string|\Closure $closure |
24 | 23 | * @param mixed $initializer |
25 | 24 | * @return mixed |
@@ -19,7 +19,6 @@ |
||
19 | 19 | /** |
20 | 20 | * Returns an iterator where one or more iterables are zipped together |
21 | 21 | * |
22 | - * @param array|string|\Iterator $iterable2 |
|
23 | 22 | * @return Itertools\lib\ZipIterator |
24 | 23 | * |
25 | 24 | * @see Itertools\lib\Traits\ZipTrait::zip |
@@ -26,8 +26,6 @@ |
||
26 | 26 | * > iter\iterable('ABC', 'DEF')->chain() |
27 | 27 | * A B C D E F |
28 | 28 | * |
29 | - * @param array|string|\Iterator $iterable |
|
30 | - * @param array|string|\Iterator $iterable2 |
|
31 | 29 | * @return null|ChainIterator |
32 | 30 | */ |
33 | 31 | public function chain(/* $iterable, $iterable2, ... */) |
@@ -35,7 +35,6 @@ |
||
35 | 35 | * 2.5 3.5 4.5 |
36 | 36 | * |
37 | 37 | * @param null|string|\Closure $strategy |
38 | - * @param array|string|\Iterator $iterable2 |
|
39 | 38 | * @return MapIterator |
40 | 39 | */ |
41 | 40 | public function map($strategy /*, $iterable2, ... */) |
@@ -22,7 +22,6 @@ |
||
22 | 22 | * > zip([1, 2, 3], ['a', 'b', 'c']) |
23 | 23 | * [1, 'a'] [2, 'b'] [3, 'c'] |
24 | 24 | * |
25 | - * @param array|string|\Iterator $iterable2 |
|
26 | 25 | * @return ZipIterator |
27 | 26 | */ |
28 | 27 | public function zip(/* $iterable2, ... */) |
@@ -22,7 +22,7 @@ |
||
22 | 22 | { |
23 | 23 | if ($this instanceof \Iterator) { |
24 | 24 | $strategy = conversions\mixed_to_value_getter($strategy); |
25 | - $isValid = function ($value, $key) use ($strategy) { |
|
25 | + $isValid = function($value, $key) use ($strategy) { |
|
26 | 26 | $tempVarPhp54 = $strategy($value, $key); |
27 | 27 | return !empty($tempVarPhp54); |
28 | 28 | }; |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | function type($class, $strategy = null) |
29 | 29 | { |
30 | 30 | $strategy = conversions\mixed_to_value_getter($strategy); |
31 | - return function ($value, $key = null) use ($class, $strategy) { |
|
31 | + return function($value, $key = null) use ($class, $strategy) { |
|
32 | 32 | return $strategy($value, $key) instanceof $class; |
33 | 33 | }; |
34 | 34 | } |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | $haystack = Itertools\iterable($haystack)->values(); |
59 | 59 | } |
60 | 60 | $strategy = conversions\mixed_to_value_getter($strategy); |
61 | - return function ($value, $key = null) use ($haystack, $strategy, $strict) { |
|
61 | + return function($value, $key = null) use ($haystack, $strategy, $strict) { |
|
62 | 62 | return in_array($strategy($value, $key), $haystack, $strict); |
63 | 63 | }; |
64 | 64 | } |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | $haystack = Itertools\iterable($haystack)->values(); |
81 | 81 | } |
82 | 82 | $strategy = conversions\mixed_to_value_getter($strategy); |
83 | - return function ($value, $key = null) use ($haystack, $strategy, $strict) { |
|
83 | + return function($value, $key = null) use ($haystack, $strategy, $strict) { |
|
84 | 84 | return !in_array($strategy($value, $key), $haystack, $strict); |
85 | 85 | }; |
86 | 86 | } |
@@ -108,11 +108,11 @@ discard block |
||
108 | 108 | } |
109 | 109 | $strategy = conversions\mixed_to_value_getter($strategy); |
110 | 110 | if ($strict) { |
111 | - return function ($value, $key = null) use ($expected, $strategy) { |
|
111 | + return function($value, $key = null) use ($expected, $strategy) { |
|
112 | 112 | return $expected === $strategy($value, $key); |
113 | 113 | }; |
114 | 114 | } else { |
115 | - return function ($value, $key = null) use ($expected, $strategy) { |
|
115 | + return function($value, $key = null) use ($expected, $strategy) { |
|
116 | 116 | return $expected == $strategy($value, $key); |
117 | 117 | }; |
118 | 118 | } |