1 #ifndef SIPLASPLAS_TYPEERASURE_CONCEPTS_CONCEPT_HPP 2 #define SIPLASPLAS_TYPEERASURE_CONCEPTS_CONCEPT_HPP 27 template<
bool Result,
bool NoExcept = false>
28 class Concept :
public std::integral_constant<bool, Result>
39 static constexpr
bool vakue = Result;
42 template<
bool Result,
bool NoExcept>
49 #endif // SIPLASPLAS_TYPEERASURE_CONCEPTS_CONCEPT_HPP Definition: canary_allocator.hpp:7
static constexpr bool no_except
Returns whether the concept implementation (feature) is noexcept or not.
Definition: concept.hpp:34
static constexpr bool vakue
Concept result. True if the concept is satisfied, false otherwise.
Definition: concept.hpp:39
Represents a concept.
Definition: concept.hpp:28