E.V.E
v2023.02.15
 
Loading...
Searching...
No Matches
eve::relaxed_logical_value Concept Reference

The concept relaxed_logical_value<T> is satisfied if and only if T is a boolean value or satisfies the eve::logical_value concept. More...

#include <eve/concept/value.hpp>

Detailed Description

Examples

  • eve::logical<char>
  • eve::logical<eve::wide<char>>
  • bool

Concept definition

template<typename T>
concept eve::relaxed_logical_value = logical_value<T> || std::same_as<T, bool>
The concept logical_value<T> is satisfied if and only if T satisfies eve::value and the element type ...
Definition value.hpp:132
The concept relaxed_logical_value<T> is satisfied if and only if T is a boolean value or satisfies th...
Definition value.hpp:167