Searched defs:ComparatorDesc (Results 1 – 1 of 1) sorted by relevance
78 struct ComparatorDesc { struct79 using is_transparent = void;80 bool operator()(HasPreset const& a, int index) const { return a.index_ < index; } in operator()81 bool operator()(int index, HasPreset const& a) const { return index < a.index_; } in operator()82 bool operator()(HasPreset const& a, HasPreset const& b) const { return a.index_ < b.index_; } in operator()