Ordering algorithms. A comparator on partially ordered elements, that panics if they are incomparable # Example ``` use contest_algorithms::order::asserting_cmp; let mut vec = vec![4.5, -1.7, 1.2]; vec.sort_unstable_by(asserting_cmp); assert_eq!(vec, vec![-1.7, 1.2, 4.5]); ```
(a: &T, b: &T)
source not stored for this graph (policy: none)
no test coverage detected