See Original text in context
Instance method returning a string of the path in which the virtual machine of the VM object is installed.
See Original text in context
A prefix path to be used in conjuncture with the paths found in the metadata.
See Original text in context
method prefix(Parameter: --> Str)
If the parameter is slurpy parameters, returns the marker (e.g., *
, **
, or +
) the parameter was declared with. Otherwise, returns an empty string.
my Signature = :(, *);say .params[0].prefix; # OUTPUT:«»say .params[1].prefix; # OUTPUT:«*»my Signature = :(, **);say .params[0].prefix; # OUTPUT:«»say .params[1].prefix; # OUTPUT:«**»my Signature = :(, +);say .params[0].prefix; # OUTPUT:«»say .params[1].prefix; # OUTPUT:«+»