pub trait SortedHList: HList { }
Expand description
Marker trait for lists whose element types are in non-decreasing order.
A SortedHList
must satisfy at compile time that each head H
compares
leq the next element HT
via typenum::Cmp<H, HT>
.