1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
crate::ix!(); /** | Descending order comparator | */ pub struct DescendingOrderComparator { } impl DescendingOrderComparator { pub fn invoke(&self, a: &OutputGroup, b: &OutputGroup) -> bool { todo!(); /* return a.GetSelectionAmount() > b.GetSelectionAmount(); */ } }