pub fn is_monotonically_increasing_by_init<T: HasTsInit>(data: &[T]) -> bool
Expand description
Checks if the data slice is monotonically increasing by initialization timestamp.
Returns true
if each element’s ts_init
is less than or equal to the next element’s ts_init
.