dot-xx
A personal collection of small C++ modules
Loading...
Searching...
No Matches
dxx::utils::neither_of Concept Referenceexport
module dxx.utils

Checks if a type is neither of provided arguments. More...

Concept definition

template<typename T, typename... Ts>
concept neither_of = !either_of<T, Ts...>
Checks if a type is the same as at least one of the provided arguments.
Definition traits.xx:56
Checks if a type is neither of provided arguments.
Definition traits.xx:62

Detailed Description

Checks if a type is neither of provided arguments.