Call the wrapped comparator with arg1 and arg2.

Synopsis

Declared in <bslstl_hashtable.h>

template<
    class ARG1_TYPE,
    class ARG2_TYPE>
bool
operator()(
    ARG1_TYPE& arg1,
    ARG2_TYPE& arg2) const;

Description

Call the wrapped functor with the specified arg1 and arg2 (in that order) and return the result. Note that ARGn_TYPE will typically be deduced as a const type.

Return Value

result of calling the wrapped comparator with arg1 and arg2

Parameters

Name

Description

arg1

first argument forwarded to the comparator

arg2

second argument forwarded to the comparator

Created with MrDocs