__Required.__ You must implement this method to apply this mixin. This is one of the primitives you must implement to support `Array`. You should replace amt objects started at idx with the objects in the passed array. Note that this method is expected to validate the type(s) of ob
(idx: number, amt: number, objects?: readonly T[])
| 1500 | @public |
| 1501 | */ |
| 1502 | replace(idx: number, amt: number, objects?: readonly T[]): void; |
| 1503 | /** |
| 1504 | Remove all elements from the array. This is useful if you |
| 1505 | want to reuse an existing array without having to recreate it. |
no outgoing calls
no test coverage detected