module Query::BiOperator(Q, T)
Included Modules
Direct including types
- Query::And(Q, T)
- Query::Equals(Q, T)
- Query::In(Q, T)
- Query::LessThan(Q, T)
- Query::LessThanOrEqual(Q, T)
- Query::MoreThan(Q, T)
- Query::MoreThanOrEqual(Q, T)
- Query::NotEquals(Q, T)
- Query::Or(Q, T)
- Query::Xor(Q, T)
Defined in:
query.cr
Constructors
Instance Method Summary
Instance methods inherited from module Query::Query
&(other)
&,
^(other)
^,
|(other)
|,
and(other)
and,
inspect(io)
inspect,
is_false
is_false,
is_not_false
is_not_false,
is_not_null
is_not_null,
is_not_true
is_not_true,
is_not_unknown
is_not_unknown,
is_null
is_null,
is_true
is_true,
is_unknown
is_unknown,
not
not,
or(other)
or,
xor(other)
xor
Constructor Detail
def self.
new(left : Q, right : T)
#
Instance Method Detail