NAryOp#

class ansys.scade.apitools.expr.access.NAryOp(expression: scade.model.suite.ExprCall)#

Bases: AryOp

Provides an expression with two or more operands.

The format is ... , where is one of these:

  • @

  • and, or, xor

  • +, *

  • land, lor

See the n_ary_op example.

Notes#

The xor operator is binary, but it is stored as a nary operator in the XSCADE files.

Parameters#

expression :

Call expression to wrap.

Initialize the instance from the Scade expression.

Overview#

operands

Operand of the operator.

Import detail#

from ansys.scade.apitools.expr.access import NAryOp

Property detail#

property NAryOp.operands: list[Expression]#

Operand of the operator.