Class
This class represents a YAML Alias. It points to an anchor
.
A Psych::Nodes::Alias
is a terminal node and may have no children.
Attributes
Read & Write
The anchor this alias links to
Class Methods
::
ext/psych/lib/psych/nodes/alias.rb
View on GitHub
# File tmp/rubies/ruby-3.4.0-preview1/ext/psych/lib/psych/nodes/alias.rb, line 14
def initialize anchor
@anchor = anchor
end
Create a new Alias
that points to an anchor
Instance Methods
#
ext/psych/lib/psych/nodes/alias.rb
View on GitHub
# File tmp/rubies/ruby-3.4.0-preview1/ext/psych/lib/psych/nodes/alias.rb, line 18
def alias?; true; end
No documentation available