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

Condition with a runtime left operand and a constant right operand. More...

#include <Condition.hpp>

Concept definition

template<typename C>
concept ecstasy::query::QConditionLeft = requires(C &condition, const typename C::Left &left) {
requires QCondition<C>;
typename C::Left;
{ C::test(left) } -> std::same_as<bool>;
}
Query Condition concept.
Definition Condition.hpp:35
Condition with a runtime left operand and a constant right operand.
Definition Condition.hpp:65

Detailed Description

Condition with a runtime left operand and a constant right operand.

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 65 of file Condition.hpp.