YamlNode class abstract
An interface for parsed nodes from a YAML source tree.
YamlMaps and YamlLists implement this interface in addition to the normal Map and List interfaces, so any maps and lists will be YamlNodes regardless of how they're accessed.
Scalars values like strings and numbers, on the other hand, don't have this interface by default. Instead, they can be accessed as YamlScalars via YamlMap.nodes or YamlList.nodes.
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited