(count: number)
| 243 | } |
| 244 | |
| 245 | public limit(count: number): DataArray<T> { |
| 246 | return this.lwrap(this.values.slice(0, count)); |
| 247 | } |
| 248 | |
| 249 | public slice(start?: number, end?: number): DataArray<T> { |
| 250 | return this.lwrap(this.values.slice(start, end)); |