(predicate, context)
| 264 | }, |
| 265 | |
| 266 | some(predicate, context) { |
| 267 | assertNotInfinite(this.size); |
| 268 | let returnValue = false; |
| 269 | this.__iterate((v, k, c) => { |
| 270 | if (predicate.call(context, v, k, c)) { |
| 271 | returnValue = true; |
| 272 | return false; |
| 273 | } |
| 274 | }); |
| 275 | return returnValue; |
| 276 | }, |
| 277 | |
| 278 | sort(comparator) { |
| 279 | return reify(this, sortFactory(this, comparator)); |
nothing calls this directly
no test coverage detected