std::ranges::equal_to(3cxx) | std::ranges::equal_to(3cxx) |
NAME¶
std::ranges::equal_to - ranges::equal_to function object type.
SYNOPSIS¶
#include <functional>
Public Types¶
using is_transparent = __is_transparent
Public Member Functions¶
template<typename _Tp , typename _Up >
requires equality_comparable_with<_Tp, _Up>constexpr bool
operator() (_Tp &&__t, _Up &&__u) const
noexcept(noexcept(std::declval< _Tp
>()==std::declval< _Up >()))"
Detailed Description¶
ranges::equal_to function object type.
Definition at line 86 of file functional.
Member Typedef Documentation¶
using std::ranges::equal_to::is_transparent = __is_transparent¶
Definition at line 95 of file functional.
Member Function Documentation¶
template<typename _Tp , typename _Up > ¶
requires equality_comparable_with<_Tp, _Up>constexpr bool std::ranges::equal_to::operator() (_Tp && __t, _Up && __u) const [inline], [constexpr], [noexcept]"
Definition at line 91 of file functional.
Author¶
Generated automatically by Doxygen for libstdc++ from the source code.
Sun Jan 8 2023 | libstdc++ |