Searched defs:mutable_max (Results 1 – 1 of 1) sorted by relevance
440 template <typename Q> inline const Q& mutable_max(const Q& x, const Q& y) { return x<y ? y : x; } in mutable_max() function441 template <typename Q> inline Q& mutable_max( Q& x, Q& y) { return x<y ? y : x; } in mutable_max() function