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