method name
Documentation for method name
assembled from the following types:
class Variable
From Variable
(Variable) method name
method name(Variable: str)
Returns the name of the variable, including the sigil.
class Parameter
From Parameter
(Parameter) method name
Returns the variable name, which includes all sigils and twigils. This name is used internally when applied to code, or in a declaration determines the name declared. This name is not necessarily usable by a caller – if it is, it will also appear as an alias. Often, the name will chosen descriptively as a form of self-documentation.
If the parameter is anonymous, Nil
will be returned.
class Thread
From Thread
(Thread) method name
method name(Thread: --> Str)
Returns the user defined string, which can optionally be set during object creation in order to identify the Thread
, or '<anon>' if no such string was specified.
my = Thread.new(code => );my = Thread.new(code => , name => 'my thread');say .name; # OUTPUT: «<anon>»say .name; # OUTPUT: «my thread»
class Routine
From Routine
(Routine) method name
method name(Routine: --> Str)
Returns the name of the sub or method.
class Scalar
From Scalar
(Scalar) method name
method name(Scalar: --> Str)
Returns the name associated with the container.
Example:
my = 42;say .VAR.name; # OUTPUT: «$x»
class Attribute
From Attribute
(Attribute) method name
Defined as:
method name(Attribute: --> Str)
Returns the name of the attribute. Note that this is always the private name, so if an attribute is declared as has $.a
, the name returned is $!a
.
my = Foo.^attributes(:local)[0];say .name; # OUTPUT: «@!bar»
role Encoding
From Encoding
(Encoding) method name
method name(--> Str)
Abstract method that would return the primary name of the encoding.
class ForeignCode
From ForeignCode
(ForeignCode) method name
method name()
Returns the name of the enclosed code, or <anon>
if it has not received any.
role Systemic
From Systemic
(Systemic) method name
Instance method returning the name of the object.
class Label
From Label
(Label) method name
Defined as:
method name()
Not terribly useful, returns the name of the defined label:
A: while True
role Metamodel::Naming
From Metamodel::Naming
(Metamodel::Naming) method name
method name()
Returns the name of the metaobject, if any.
say 42.^name; # OUTPUT: «Int»
class Encoding::Registry
From Encoding::Registry
(Encoding::Registry) method name
method register(Encoding --> Nil)
Register a new Encoding.
class X::IO::Symlink
From X::IO::Symlink
(X::IO::Symlink) method name
Returns the path that symlink failed to create.
class X::IO::Link
From X::IO::Link
(X::IO::Link) method name
Returns the name of the link that could not be created.
class X::Dynamic::NotFound
From X::Dynamic::NotFound
(X::Dynamic::NotFound) method name
method name(--> Str)
Returns the name of the variable that has not been found.
class X::Attribute::Package
(X::Attribute::Package) method name
method name(--> Str)
Returns the name of the attribute that triggered this error.
class X::Attribute::NoPackage
(X::Attribute::NoPackage) method name
method name(--> Str)
Returns the name of the attribute
class X::Attribute::Required
(X::Attribute::Required) method name
method name(--> Str)
Returns the name of the attribute.
class X::Bind::NativeType
From X::Bind::NativeType
(X::Bind::NativeType) method name
method name(--> Str)
Returns the name of the variable.
class X::Signature::NameClash
(X::Signature::NameClash) method name
method name(--> Str)
Returns the name that was used for more than one parameter.
class Pod::Block::Named
From Pod::Block::Named
(Pod::Block::Named) method name
method name(--> Str)
Returns the name of the block.