Searched defs:Fraction (Results 1 – 1 of 1) sorted by relevance
57 struct Fraction { struct61 Fraction(T num = 0, T denom = 1) : mNum(num), mDen(denom) { in mNum() argument70 bool operator<(const Fraction<T>& other) const { return mNum * other.mDen < other.mNum * mDen; } argument