test overloads
Declared in <bslalg_hashtableimputil.h>
Overload selected when extractKey returns KeyType&.
template<class ARG>
static
NonConstMatch
test(KeyType&(* func)(ARG&));
» more...
Overload selected when extractKey returns const KeyType&.
template<class ARG>
static
ConstMatch
test(KeyType const&(* func)(ARG const&));
» more...
Overload selected when extractKey returns a converted KeyType.
template<
class RESULT,
class ARG>
static
ConversionMatch
test(RESULT(* func)(ARG));
» more...
NonConstMatch tag selecting the mutable-reference categoryConstMatch tag selecting the const-reference categoryConversionMatch tag selecting the by-value category| Name | Description |
|---|---|
| func | pointer to an extractKey returning KeyType& |