method Slip
Documentation for method Slip
assembled from the following types:
class Any
From Any
(Any) method Slip
Defined as:
method Slip(--> Slip:D) is nodal
Coerces the invocant to Slip.
class Array
From Array
(Array) method Slip
Defined as:
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)»