[]
Returns the items in the list.
public IEnumerable<Tuple<int, T?>> GetItems(bool onlyNonNullItems = false, int? from = null, int? to = null)
Type | Name | Description |
---|---|---|
bool | onlyNonNullItems | Only return those items that aren't null. Passing this parameter to true is convenient for huge lists having mostly nulls. |
int? | from | The starting index to return items. |
int? | to | The last index to return items. |
Type | Description |
---|---|
IEnumerable<Tuple<int, T>> |