= (l int a) l int ¶Monadic operator that yields the affirmation of its operand.
= (l int a) l int ¶Monadic operator that yields the negative of its operand.
= (l int a) l int ¶Monadic operator that yields the absolute value of its operand.
= (l int a) int ¶Monadic operator that yields -1 if a if negative, 0 if a
is zero and 1 if a is positive.
= (l int a) bool ¶Monadic operator that yields true if its operand is odd,
false otherwise.
= (l int a, b) l int ¶Dyadic operator that yields the addition of its operands.
= (l int a, b) l int ¶Dyadic operator that yields b subtracted from a.
= (l int a, b) l int ¶Dyadic operator that yields the multiplication of its operands.
= (l int a, b) l int ¶= (l int a, b) l int ¶Dyadic operator that yields the integer division of a by
b, rounding the quotient toward zero.
= (l int a, b) l int ¶= (l int a, b) l int ¶Dyadic operator that yields the remainder of the division of a
by b.
= (l int a, b) l real ¶Dyadic operator that yields the integer division with real result of
a by b.
= (ref l int a, l int b) ref l int ¶= (ref l int a, l int b) ref l int ¶Plus and become. Dyadic operator that calculates a + b,
assigns the result of the operation to the name a and then
yields a.
= (ref l int a, l int b) ref l int ¶= (ref l int a, l int b) ref l int ¶Dyadic operator that calculates a - b, assigns the result of
the operation to the name a and then yields a.
= (ref l int a, l int b) ref l int ¶= (ref l int a, l int b) ref l int ¶Dyadic operator that calculates a * b, assigns the result of
the operation to the name a and then yields a.
= (l int a, b) bool ¶= (l int a, b) bool ¶Dyadic operator that yields whether its operands are equal.
= (l int a, b) bool ¶= (l int a, b) bool ¶Dyadic operator that yields whether its operands are not equal.
= (l int a, b) bool ¶= (l int a, b) bool ¶Dyadic operator that yields whether a is less than b.
= (l int a, b) bool ¶= (l int a, b) bool ¶Dyadic operator that yields whether a is less than, or equal to
b.
= (short int a) short short int ¶= (int a) short int ¶= (long int a) int ¶= (long long int a) long int ¶Monadic operator that yields, if it exists, the integral value that
can be lengthened to the value of a. If the value doesn’t
exist then the operator yields either the most positive integral value
in the destination mode, if a is bigger than that value, or the
most negative integral value in the destination mode, if a is
smaller than that value.