Construct a Node from a value.
Shortcut for get().
Add an element to a sequence.
Add a key-value pair to a mapping.
Determine if a collection contains specified value.
Determine if a mapping contains specified key.
Get the value of the node as specified type.
Is this node valid (initialized)?
If this is a collection, return its length.
Return a range object iterating over mapping's keys.
Return a range object iterating over mapping's values.
Get the kind of node this is.
Foreach over a sequence, getting each element as T.
Foreach over a mapping, getting each key/value as K/V.
Assignment (shallow copy) by value.
Determine whether a key is in a mapping, and access its value.
Compare with another _node.
Equality test.
Get the element at specified index.
Set element at specified index in a collection.
Remove first (if any) occurence of a value in a collection.
Remove element at the specified index of a collection.
Sets the style of this node when dumped.
Return tag of the node.
Get type of the node value.
YAML node.
This is a pseudo-dynamic type that can store any YAML value, including a sequence or mapping of nodes. You can get data from a Node directly or iterate over it if it's a collection.