HistoryEventId
History view that exposes event ids of time entries. They are used for ordering within the same timestamp.
Methods
| Method | Description |
|---|---|
collect | Collect all event ids. |
collect_rev | Collect all event ids in reverse order. |
to_list | Collect all event ids into a list. |
to_list_rev | Collect all event ids into a list in reverse order. |
Method Details
collect
Collect all event ids.
Returns
| Type | Description |
|---|---|
NDArray[np.uintp] | Event ids. |
collect_rev
Collect all event ids in reverse order.
Returns
| Type | Description |
|---|---|
NDArray[np.uintp] | Event ids in reverse order. |
to_list
Collect all event ids into a list.
Returns
| Type | Description |
|---|---|
| list[int] | List of event ids. |
to_list_rev
Collect all event ids into a list in reverse order.
Returns
| Type | Description |
|---|---|
| list[int] | List of event ids. |