xtd 0.2.0
Loading...
Searching...
No Matches
xtd::collections::generic::helpers::equator< key_t > Struct Template Reference

Definition

template<class key_t>
struct xtd::collections::generic::helpers::equator< key_t >

Implements a function object for performing comparisons. Unless specialised, invokes operator== on type type_t. xtd::equator with the key and the value strongly typed to be std::any.

template<class key_t>
struct equator;
Implements a function object for performing comparisons. Unless specialised, invokes operator== on ty...
Definition equator.hpp:38
Header
#include <xtd/collections/generic/equator>
Namespace
xtd::collections::generic
Library
xtd.core
Examples
The following example show how to use xtd::collections::generic::helpers::equator with std::unordered_map.
auto key_values = std::unordered_map<xtd::date_time, xtd::string, xtd::collections::generic::helpers::hasher<xtd::date_time>, xtd::collections::generic::helpers::equator<xtd::date_time>, xtd::collections::generic::helpers::allocator<xtd::collections::generic::key_value_pair<const xtd::date_time, xtd::string>>> {};
key_values.insert({{1971, 1, 5}, "Birth date"});
std::allocator< type_t > allocator
Represent an allocator alias.
Definition allocator.hpp:35

Public Aliases

using first_argument_type = key_t
 Represents the first argument type.
 
using second_argument_type = key_t
 Represents the second argument type.
 
using result_type = bool
 Represents the result type.
 

Public Operators

result_type operator() (const first_argument_type &a, const second_argument_type &b) const
 checks if the specified a and b keys are equal.
 

Member Typedef Documentation

◆ first_argument_type

template<class key_t >
using xtd::collections::generic::helpers::equator< key_t >::first_argument_type = key_t

Represents the first argument type.

◆ second_argument_type

template<class key_t >
using xtd::collections::generic::helpers::equator< key_t >::second_argument_type = key_t

Represents the second argument type.

◆ result_type

template<class key_t >
using xtd::collections::generic::helpers::equator< key_t >::result_type = bool

Represents the result type.

Member Function Documentation

◆ operator()()

template<class key_t >
result_type xtd::collections::generic::helpers::equator< key_t >::operator() ( const first_argument_type a,
const second_argument_type b 
) const
inline

checks if the specified a and b keys are equal.

Parameters
aThe first key to check.
bThe second key to check.
Returns
true if keys are equals; otherwise false.
Remarks
If key_t inherits from xtd::object, the xtd::object::equals method will be used; otherwise, the std::equal_to object function will be used.

The documentation for this struct was generated from the following file: