The Slip routine

Combined from primary sources listed below.

In class IterationBuffer ( Type/IterationBuffer )§

See primary docmentation in context for method Slip.

method Slip§

method Slip(IterationBuffer:D: --> Slip:D)

Coerces the IterationBuffer to a Slip.

In class Any ( Type/Any )§

See primary docmentation in context for method Slip.

method Slip§

method Slip(--> Slip:D) is nodal

Coerces the invocant to Slip.

In class Array ( Type/Array )§

See primary docmentation in context for method Slip.

method Slip§

multi method Slip(Array:D: --> Slip:D)

Converts the array to a Slip, filling the holes with the type value the Array has been defined with.

my Int @array= [0];
@array[3]=3;
say @array.Slip# OUTPUT: «(0 (Int) (Int) 3)␤»