ECSTASY
All in the name
Loading...
Searching...
No Matches
ecstasy::query::QConditionConst Concept Reference

Condition with two constant operands. More...

#include <Condition.hpp>

Concept definition

template<typename C>
concept ecstasy::query::QConditionConst = requires(C &condition) {
requires QCondition<C>;
{ C::test() } -> std::same_as<bool>;
}
Condition with two constant operands.
Definition Condition.hpp:47
Query Condition concept.
Definition Condition.hpp:35

Detailed Description

Condition with two constant operands.

Meaning that the condition should always output the same result.

See also
QCondition
Template Parameters
CThe type to check.
Author
Andréas Leroux (andre.nosp@m.as.l.nosp@m.eroux.nosp@m.@epi.nosp@m.tech..nosp@m.eu)
Since
1.0.0 (2022-12-16)

Definition at line 47 of file Condition.hpp.