Combined from primary sources listed below.
See primary docmentation in context for method Slip.
See primary docmentation in context for method Slip.
See primary docmentation 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)»