See Original text in context
multi method signature(Code: --> Signature)
Returns the Signature
object for this code object, which describes its parameters.
sub a(Int , Str ) ;say .signature; # OUTPUT: «(Int $one, Str $two)»
See Original text in context
method signature( ForeignCode: )
Returns the signature of the enclosed code.
See Original text in context
Instance method returning the signature of the object. Returns a Blob
type object if the signature could not be established.