Contained data type.
Type used to identify a element in the container.
Add an element at the end of the list
The element to append to the list.
A cold observable containing the index of the added element in list.
Add an element at the end of the list
The element to append to the list.
A cold observable containing the index of the added element in list.
Find an element in a container according to its ID
Id of the element to find.
an observable on the element found.
Retrieve the element value from the list according to its possition in the list.
A hot observable to the element.
Remove the last element of the container.
A cold observable containing the value of the removed element in the container (observable will return undefined if the container is empty).
Remove an element using its position in the list
The position index of the element to remove.
Remove an element from a container according to its ID
Id of the element to remove.
Remove an element at the start of the container.
a cold observable on the removed element (observable returns undefined if the container is empty).
Add an element at the start of the container.
The element to prepend to the container.
nothing.
Generated using TypeDoc
Interface for containers having specific ways for idendifying data