Searched defs:greater_equal (Results 1 – 6 of 6) sorted by relevance
11 template<typename T = void> struct greater_equal {}; struct37 template<> struct greater_equal<> { struct39 auto operator()(T1 &&t, T2 &&u) const noexcept(noexcept(t >= u)) in operator ()()
593 def greater_equal(a, b): function
992 def greater_equal(x1, x2): function
576 pub fn greater_equal(x: &[Limb], y: &[Limb]) -> bool { in greater_equal() function
2881 struct greater_equal : std::greater_equal<T> {}; struct2884 struct greater_equal<APInt> { struct2885 bool operator()(const APInt& a, const APInt& b) const { return a.sge(b); } in operator ()()
2753 def greater_equal(x, y): function