Namespaces
Variants

std:: greater<void>

From cppreference.net
Utilities library
Function objects
Function invocation
(C++17) (C++23)
Identity function object
(C++20)
Old binders and adaptors
( until C++17* )
( until C++17* )
( until C++17* )
( until C++17* )
( until C++17* ) ( until C++17* ) ( until C++17* ) ( until C++17* )
( until C++20* )
( until C++20* )
( until C++17* ) ( until C++17* )
( until C++17* ) ( until C++17* )

( until C++17* )
( until C++17* ) ( until C++17* ) ( until C++17* ) ( until C++17* )
( until C++20* )
( until C++20* )
Определено в заголовке <functional>
template <>
class greater < void > ;
(начиная с C++14)

std:: greater < void > является специализацией std::greater с выведенными типами параметров и возвращаемого значения.

Содержание

Вложенные типы

Вложенный тип Определение
is_transparent unspecified

Функции-члены

operator()
проверяет, больше ли lhs чем rhs
(public member function)

std::greater<void>:: operator()

template < class T, class U >

constexpr auto operator ( ) ( T && lhs, U && rhs ) const

- > decltype ( std:: forward < T > ( lhs ) > std:: forward < U > ( rhs ) ) ;

Возвращает результат std:: forward < T > ( lhs ) > std:: forward < U > ( rhs ) .

Параметры

lhs, rhs - значения для сравнения

Возвращаемое значение

std:: forward < T > ( lhs ) > std:: forward < U > ( rhs ) .

Если вызывается встроенный оператор сравнения указателей, результат соответствует определенной реализацией строгой тотальной упорядоченности указателей .

Исключения

Может выбрасывать определенные реализацией исключения.

Пример

#include <algorithm>
#include <cstdint>
#include <functional>
constexpr bool strictly_positive(int lhs)
{
    return std::greater<>()(lhs, 0);
}
int main()
{
    constexpr std::int64_t low = 0B11;
    constexpr std::uint16_t high = 0X11;
    std::greater<> greater{};
    static_assert(greater(high, low));
    constexpr static auto arr = {0, 1, 2, 3, 4, 5};
    static_assert(!std::all_of(arr.begin(), arr.end(), strictly_positive));
    static_assert(std::all_of(arr.begin() + 1, arr.end(), strictly_positive));
}

Отчеты о дефектах

Следующие отчеты об изменениях поведения, влияющие на дефекты, были применены ретроактивно к ранее опубликованным стандартам C++.

DR Applied to Behavior as published Correct behavior
LWG 2562 C++98 the pointer total order might be inconsistent guaranteed to be consistent