Represents the dictionary equator type.
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 | |
bool | operator() (const key_t &a, const key_t &b) const |
checks if the specified a and b keys are equal. | |
using xtd::collections::generic::dictionary< key_t, value_t, hasher_t, equator_t, allocator_t >::equator::first_argument_type = key_t |
Represents the first argument type.
using xtd::collections::generic::dictionary< key_t, value_t, hasher_t, equator_t, allocator_t >::equator::second_argument_type = key_t |
Represents the second argument type.
using xtd::collections::generic::dictionary< key_t, value_t, hasher_t, equator_t, allocator_t >::equator::result_type = bool |
Represents the result type.
|
inline |
checks if the specified a and b keys are equal.
a | The first key to check. |
b | The second key to check. |
true
if keys are equals; otherwise false
.