Name
class Name(val localName: String, val parent: Name? = null, val delimiter: String = ".") : Cloneable, Comparable<Name> , CharSequence
This class represents anything that can have a "Name". In the simplest case it only represents a local name in a flat hierarchy, such as myVariable
. However, it can also be used to represent fully qualified name with a complex name hierarchy, such as my::namespace::function
.
Constructors
Properties
Link copied to clipboard
Checks whether the name for a function (as CharSequence) is a known operator name.