Class
This class represents a YAML Scalar.
This node type is a terminal node and should not have any children.
Constants
Any style scalar, the emitter chooses
Plain scalar style
Single quoted style
Double quoted style
Literal style
Folded style
Attributes
Read & Write
The scalar value
Read & Write
The anchor value (if there is one)
Read & Write
The tag value (if there is one)
Read & Write
Is this a plain scalar?
Read & Write
Is this scalar quoted?
Read & Write
The style of this scalar
Class Methods
ext/psych/lib/psych/nodes/scalar.rb
View on GitHub
# File tmp/rubies/ruby-3.1.3/ext/psych/lib/psych/nodes/scalar.rb, line 58
def initialize value, anchor = nil, tag = nil, plain = true, quoted = false, style = ANY
@value = value
@anchor = anchor
@tag = tag
@plain = plain
@quoted = quoted
@style = style
end
Create a new Psych::Nodes::Scalar
object.
value
is the string value of the scalar anchor
is an associated anchor or nil tag
is an associated tag or nil plain
is a boolean value quoted
is a boolean value style
is an integer indicating the string style
See Also
See also Psych::Handler#scalar
Instance Methods
#
ext/psych/lib/psych/nodes/scalar.rb
View on GitHub
# File tmp/rubies/ruby-3.1.3/ext/psych/lib/psych/nodes/scalar.rb, line 67
def scalar?; true; end
No documentation available