Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Function template ge

pfr::ge — Compares lhs and rhs for greater-equal using their own comparison and conversion operators; if no operators available returns pfr::ge_fields (lhs, rhs).

Synopsis

// In header: <pfr/ops.hpp>


template<typename T, typename U> unspecified ge(const T & lhs, const U & rhs);

Description

Returns:

true if lhs is greater or equal to rhs; false otherwise


PrevUpHomeNext