Readonly$A Readable that emits the Array itself whenever it changes.
Readonly FunctiononSubscribe to events when a value is needed to be disposed.
A value is considered for disposal when:
The function to call when a value is needed to be disposed.
A disposer function to unsubscribe from the event.
Readonlylength
Gets the length of the array. This is a number one higher than the highest index in the array.
Use .setLength(length) to change the length of the array.
Overwrites the value at the provided index with the given value. If the index is negative, then it replaces from the end of the array.
The index of the value to overwrite. If the index is negative, then it replaces from the end of the array.
The value to write into the array.
Updates the length of the array.
The new length of the array.
ReadonlyReactiveArray is a readonly interface for ReactiveArray.