(predicate: Predicate)
| 256 | constructor(private collection: any) {} |
| 257 | |
| 258 | public filter(predicate: Predicate): this { |
| 259 | this.collection = filter(this.collection, predicate); |
| 260 | return this; |
| 261 | } |
| 262 | |
| 263 | public groupBy(iteratee: Iteratee): this { |
| 264 | this.collection = groupBy(this.collection, iteratee); |
no test coverage detected