![]() |
BRICKS
Small, useful blocks of code, to build bigger things.
|
Checks if a type has a find
method taking a specific type.
More...
#include <type_traits.hpp>
Related Symbols | |
(Note that these are not member symbols.) | |
template<class T , typename U > | |
constexpr bool | has_find_v = has_find<T, U>::value |
Helper variable template to check if a type has a find method taking a specific type. | |
Checks if a type has a find
method taking a specific type.
Provides the member constant value
which is true
if the type has a find
method taking a specific type, otherwise value is equal to false
.
T | The type to check. |
U | The type of the argument to find . |
|
related |
Helper variable template to check if a type has a find
method taking a specific type.
Example: