Enum endbasic_core::ast::CaseRelOp
source · pub enum CaseRelOp {
Equal,
NotEqual,
Less,
LessEqual,
Greater,
GreaterEqual,
}Expand description
Collection of relational operators that can appear in a CASE IS guard..
Variants§
Equal
Relational operator for CASE IS =.
NotEqual
Relational operator for CASE IS <>.
Less
Relational operator for CASE IS <.
LessEqual
Relational operator for CASE IS <=.
Greater
Relational operator for CASE IS >.
GreaterEqual
Relational operator for CASE IS >=.