mrdocs::operator>=
Checks if the left Optional is greater than or equal to the right Optional. Returns true if the right is disengaged or the left is engaged and its value is greater or equal.
Synopsis
Declared in <mrdocs/ADT/Optional.hpp>
template<
typename T,
typename U>
constexpr
/* implementation-defined */
operator>=(
Optional<T> const& lhs,
Optional<U> const& rhs);
Return Value
true if lhs is greater than or equal to rhs according to the described rules; otherwise, false.
Parameters
Name |
Description |
lhs |
The left operand |
rhs |
The right operand |
Created with MrDocs