(predicate, context)
| 183 | }, |
| 184 | |
| 185 | every(predicate, context) { |
| 186 | assertNotInfinite(this.size); |
| 187 | let returnValue = true; |
| 188 | this.__iterate((v, k, c) => { |
| 189 | if (!predicate.call(context, v, k, c)) { |
| 190 | returnValue = false; |
| 191 | return false; |
| 192 | } |
| 193 | }); |
| 194 | return returnValue; |
| 195 | }, |
| 196 | |
| 197 | filter(predicate, context) { |
| 198 | return reify(this, filterFactory(this, predicate, context, true)); |
nothing calls this directly
no test coverage detected