In IterationBuffer§

See primary documentation in context for method Slip

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

Coerces the IterationBuffer to a Slip.

In Any§

See primary documentation in context for method Slip

method Slip(--> Slip:Dis nodal

Coerces the invocant to Slip.

In Array§

See primary documentation in context for 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)␤»