enum Fexpr::JoinOperation
Overview
Represents the type of logical operation used to join expressions.
Defined in:
fexpr/scanner.crEnum Members
-
JoinAnd =
0
-
Logical AND (&&) operation between expressions
-
JoinOr =
1
-
Logical OR (||) operation between expressions
Class Method Summary
-
.parse(literal : String) : JoinOperation | Nil
Creates a JoinOperation from its string representation.
Instance Method Summary
Class Method Detail
def self.parse(literal : String) : JoinOperation | Nil
#
Creates a JoinOperation from its string representation.
Returns nil
if the literal is not a valid join operator.