A destructor is present on this object, but not explicitly documented in the source.
A postblit is present on this object, but not explicitly documented in the source.
Create new const range. Const range preserve it's correctness by preventing you from any list mutations.
Get last item. O(1)
Get item at some position.
Insert item at position i. O(N)
Pop last item from the list. O(1)
Pop first item from the list. O(1)
Append item to the list. O(1)
Prepend list with item v. O(1)
Remove item from the list by item index. O(N)