Utils
Utility classes and functions for manipulating, deconstructing or joining together intermediate workflow outputs.
ListUtils
Class for invoking operations on iterables.
get_item
staticmethod
get_item(items, index=0)
Retrieve an item from the specified list index.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
items
|
Sequence
|
Iterable to retrieve from |
required |
index
|
int
|
Index position |
0
|
Returns:
Type | Description |
---|---|
Any
|
The item at the list index, or None if index exceeds iterable length. |