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