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