Expand description
Note that there are “alloc” and “std” feature flags that can be turned off
Modules§
Structs§
- OrdTo
Tree Ord - Wrapper that implements
TreeOrd
with a no-opTracker
for anyT: Ord
. It may be important to implementTreeOrd
manually for large and complicatedT
. - Tree
OrdBytes - The generic
[T]
impl is not performant for[u8]
. We can’t specialize the[T]
impl on stable, so this exists to compare bytes in chunks of bytes. However, it seems this is only more performant for very long slices and deep trees, you should benchmark to see if this is faster for your usecase. - Tree
OrdReverse - Like core::cmp::Reverse except for
TreeOrd
- Tree
OrdVec - The same as
TreeOrdBytes
but for an ownedVec<u8>