See Original text in context
method Slip(--> Slip) is nodal
Coerces the invocant to slips.
See Original text in context
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)»