(time, offset = 0)
| 190 | |
| 191 | // Return the first index with element.time >= time. |
| 192 | find(time, offset = 0) { |
| 193 | return this.findFirst(time, offset); |
| 194 | } |
| 195 | |
| 196 | findFirst(time, offset = 0) { |
| 197 | return this._find(this._values, each => each.time - time, offset); |