pub fn cmp_datum_iter(
lhs: impl IntoIterator<Item = impl ToDatumRef>,
rhs: impl IntoIterator<Item = impl ToDatumRef>,
order_types: impl IntoIterator<Item = OrderType>,
) -> Ordering
Expand description
Compare two Datum
iterators with specified order types.
ยงPanics
Panics if the number of OrderType
s is smaller than the number of Datum
s,
or if the data types of lhs
and rhs
are not matched.