* Returns a copy of the data from the index `from`, inclusive, to the index * `to`, exclusive
(from, to)
| 57 | * `to`, exclusive |
| 58 | */ |
| 59 | slice(from, to) { |
| 60 | return this.data.slice(from, Math.min(to, this.length)); |
| 61 | } |
| 62 | |
| 63 | /** |
| 64 | * Returns a mutable Float32Array window from the index `from`, inclusive, to |
no outgoing calls
no test coverage detected