Documentation for method Slip
assembled from the following pages:
Class: Any §
From Any
(Any) method Slip §
Defined as:
method Slip(--> Slip) is nodal
Coerces the invocant to Slip.
Class: Array §
From Array
(Array) method Slip §
Defined as:
multi method Slip(Array: --> Slip)
Converts the array to a Slip
, filling the holes with the type value the Array has been defined with.
my Int = [0];[3]=3;say .Slip; # OUTPUT: «(0 (Int) (Int) 3)»