List[T]
- typeList[T]
A growable array
- functionconcat(self: List[T], other: List[T]) List[T]
Concatenate this list with another, returning the result.
The arguments are not mutated by this function.
- functionget(self: List[T], idx: u64) Option[T]
Get an element from the list.
This function returns
Noneif the index is out of bounds.