Home
last modified time | relevance | path

Searched defs:greater_equal (Results 1 – 3 of 3) sorted by relevance

/openbsd-src/gnu/llvm/libcxx/include/__functional/
H A Dranges_operations.h83 struct greater_equal { struct
86 [[nodiscard]] constexpr bool operator()(_Tp &&__t, _Up &&__u) const in operator()
91 using is_transparent = void;
/openbsd-src/gnu/gcc/libstdc++-v3/include/bits/
H A Dstl_function.h232 struct greater_equal : public binary_function<_Tp, _Tp, bool> struct
235 operator()(const _Tp& __x, const _Tp& __y) const in operator()
/openbsd-src/gnu/lib/libstdc++/libstdc++/include/bits/
H A Dstl_function.h202 struct greater_equal : public binary_function<_Tp,_Tp,bool> struct
204 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x >= __y; } in operator()