NestedHistoryEventIdIterable
Methods
| Method | Description |
|---|
collect | Collect event ids for each history in each nested iterable into a NumPy array. |
flatten | Flatten the nested iterable of history objects into a single NumPy NDArray of all contained event ids. |
flattened_list | Flatten the nested iterable of history objects into a single list of all contained event ids. |
to_list | Collect event ids for each history in each nested iterable into a list. |
Method Details
Collect event ids for each history in each nested iterable into a NumPy array.
Returns
| Type | Description |
|---|
list[list[NDArray[np.uintp]]] | NumPy NDArray of event ids per nested history. |
Flatten the nested iterable of history objects into a single NumPy NDArray of all contained event ids.
Returns
| Type | Description |
|---|
NDArray[np.uintp] | NumPy NDArray of event ids. |
Flatten the nested iterable of history objects into a single list of all contained event ids.
Returns
| Type | Description |
|---|
| list[int] | List of timestamps in milliseconds. |
Collect event ids for each history in each nested iterable into a list.
Returns
| Type | Description |
|---|
| list[list[list[int]]] | List of event ids per nested history. |