public interface IList<T>:
Read-only ordered collection of elements. @param <T> Element type.
| Modifier and Type | Member | Description |
|---|---|---|
| public readonly property | sizesize as ULong |
Number of elements in the list. |
| Modifier and Type | Member | Description |
|---|---|---|
| public | countcount(item as T) as ULong |
Counts occurrences of the given element in the list. |
| public | join | Joins elements into a single string using the separator. |
| Modifier and Type | Member | Description |
|---|---|---|
| public | operator in(item as T) as Boolean | Returns true if the list contains the given element. |
| public | operator[](index as Int) as T | Returns the element at the given index. |