HistoryTimestamp

History view that exposes timestamps in milliseconds since the Unix epoch.

Methods

MethodDescription
collectCollect all timestamps into a NumPy ndarray.
collect_revCollect all timestamps into a NumPy ndarray in reverse order.
to_listCollect all timestamps into a list.
to_list_revCollect all timestamps into a list in reverse order.

Method Details

collect

Collect all timestamps into a NumPy ndarray.

Returns

TypeDescription
NDArray[np.int64]Timestamps in milliseconds since the Unix epoch.

collect_rev

Collect all timestamps into a NumPy ndarray in reverse order.

Returns

TypeDescription
NDArray[np.int64]Timestamps in milliseconds since the Unix epoch in reverse order.

to_list

Collect all timestamps into a list.

Returns

TypeDescription
list[int]List of timestamps.

to_list_rev

Collect all timestamps into a list in reverse order.

Returns

TypeDescription
list[int]List of timestamps.