pub type OrdFn<T> = Option<Box<dyn Fn(&T, &T) -> Ordering>>;
Sorting function used for views.
pub enum OrdFn<T> { None, Some(Box<dyn Fn(&T, &T) -> Ordering>), }
No value.
Some value of type T.
T