enum Fexpr::JoinOperation

Overview

Represents the type of logical operation used to join expressions.

Defined in:

fexpr/scanner.cr

Enum Members

JoinAnd = 0

Logical AND (&&) operation between expressions

JoinOr = 1

Logical OR (||) operation between expressions

Class Method Summary

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.


[View source]

Instance Method Detail

def join_and? #

[View source]
def join_or? #

[View source]