MathNaryOperator constructor

init(self, operator_symbol, base_argument)

Initializes a new instance of the MathNaryOperator class.

def __init__(self, operator_symbol, base_argument):
    ...
ParameterTypeDescription
operator_symbolcharNary operator symbol
base_argumentIMathElementBase argument

init(self, operator_symbol, base_argument, lower_limit)

Initializes a new instance of the MathNaryOperator class.

def __init__(self, operator_symbol, base_argument, lower_limit):
    ...
ParameterTypeDescription
operator_symbolcharNary operator symbol
base_argumentIMathElementBase argument
lower_limitIMathElementLower limit

init(self, operator_symbol, base_argument, lower_limit, upper_limit)

Initializes a new instance of the MathNaryOperator class.

def __init__(self, operator_symbol, base_argument, lower_limit, upper_limit):
    ...
ParameterTypeDescription
operator_symbolcharNary operator symbol
base_argumentIMathElementBase argument
lower_limitIMathElementLower limit
upper_limitIMathElementUpper limit

See Also