(predicate: ArrayFunc<T, boolean>)
| 211 | } |
| 212 | |
| 213 | public where(predicate: ArrayFunc<T, boolean>): DataArray<T> { |
| 214 | return this.lwrap(this.values.filter(predicate)); |
| 215 | } |
| 216 | |
| 217 | public filter(predicate: ArrayFunc<T, boolean>): DataArray<T> { |
| 218 | return this.where(predicate); |