Home
last modified time | relevance | path

Searched refs:OnComparison (Results 1 – 2 of 2) sorted by relevance

/dports/math/sound-of-sorting/sound-of-sorting-5884a35/src/
H A DSortArray.h84 { OnComparison(*this,v); return (value == v.value); }
87 { OnComparison(*this,v); return (value != v.value); }
90 { OnComparison(*this,v); return (value < v.value); }
93 { OnComparison(*this,v); return (value <= v.value); }
96 { OnComparison(*this,v); return (value > v.value); }
99 { OnComparison(*this,v); return (value >= v.value); }
104 OnComparison(*this,v); in cmp()
119 static void OnComparison(const ArrayItem& a, const ArrayItem& b);
H A DSortArray.cpp43 void ArrayItem::OnComparison(const ArrayItem& a, const ArrayItem& b) in OnComparison() function in ArrayItem