Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::greater<void>

      From cppreference.com
      <cpp‎ |utility‎ |functional
       
       
      Utilities library
       
      Function objects
      Function invocation
      (C++17)(C++23)
      Identity function object
      (C++20)
      Transparent operator wrappers
      (C++14)
      (C++14)
      (C++14)
      (C++14)  
      (C++14)
      (C++14)
      (C++14)
      (C++14)
      (C++14)
      (C++14)
      (C++14)
      greater<>
      (C++14)
      (C++14)

      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++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*)
       
      Defined in header<functional>
      template<>
      class greater<void>;
      (since C++14)

      std::greater<void> is a specialization ofstd::greater with parameter and return type deduced.

      Contents

      [edit]Nested types

      Nested type Definition
      is_transparentunspecified

      [edit]Member functions

      operator()
      tests iflhs compares greater thanrhs
      (public member function)

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

      template<class T,class U>

      constexprauto operator()( T&& lhs, U&& rhs)const

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

      Returns the result ofstd::forward<T>(lhs)>std::forward<U>(rhs).

      Parameters

      lhs, rhs - values to compare

      Return value

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

      If a built-in operator comparing pointers is called, the result is consistent with theimplementation-defined strict total order over pointers.

      [edit]Exceptions

      May throw implementation-defined exceptions.

      [edit]Example

      Run this code
      #include <algorithm>#include <cstdint>#include <functional> constexprbool strictly_positive(int lhs){returnstd::greater<>()(lhs,0);} int main(){constexprstd::int64_t low=0B11;constexprstd::uint16_t high=0X11;std::greater<> greater{};    static_assert(greater(high, low)); constexprstaticauto 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));}

      [edit]Defect reports

      The following behavior-changing defect reports were applied retroactively to previously published C++ standards.

      DRApplied toBehavior as publishedCorrect behavior
      LWG 2562C++98the pointer total order might be inconsistentguaranteed to be consistent
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/utility/functional/greater_void&oldid=171345"

      [8]ページ先頭

      ©2009-2025 Movatter.jp