concepts.dsl.expression.ObjectCompareExpression#

class ObjectCompareExpression[source]#

Bases: _CompareExpressionBase

Methods

cached_string([max_length])

check_arguments()

Attributes

OpType#

alias of CompareOpType

__init__(compare_op, lhs, rhs)#
Parameters:
__new__(**kwargs)#
cached_string(max_length=None)#
Parameters:

max_length (int | None)

check_arguments()#
property arguments: Tuple[ObjectOrValueOutputExpression, ObjectOrValueOutputExpression]#
compare_op: CompareOpType#

The comparison operation.

property is_and_expr: bool#
property is_constant_bool_expr: bool#
property is_exists_expr: bool#
property is_forall_expr: bool#
property is_implies_expr: bool#
property is_not_expr: bool#
property is_null_expression: bool#
property is_object_output_expression: bool#
property is_or_expr: bool#
property is_value_output_expression: bool#
property is_variable_assignment_expression: bool#
property is_xor_expr: bool#
lhs: ObjectOutputExpression | VariableExpression#

The left-hand side of the comparison.

property return_type: ValueType#
rhs: ObjectOutputExpression | VariableExpression#

The right-hand side of the comparison.