pub type DynComparator = Box<dyn Fn(usize, usize) -> Ordering + Sync + Send>;
Compare the values at two arbitrary indices in two arrays.
pub struct DynComparator(/* private fields */);