infix =

Documentation for infix = assembled from the following types:

language documentation Operators

From Operators

(Operators) infix =

    sub infix:<=>(Mu $a is rwMu $b)

Called the item assignment operator, it Places the value of the right-hand side into the container on the left-hand side. Its exact semantics are left to the container type on the left-hand side.

(Note that item assignment and list assignment have different precedence levels, and the syntax of the left-hand side decides whether an equal sign = is parsed as item assignment or list assignment operator).

language documentation Operators

From Operators

(Operators) infix =

In this context, it acts as the list assignment operator. Its exact semantics are left to the container type on the left-hand side. See Array and Hash for common cases.

The distinction between item assignment and list assignment is determined by the parser depending on the syntax of the left-hand side.