class
Ruby latest stable (v2_5_5)
-
0 notes
- Superclass:
Node
- 1_8_6_287
- 1_8_7_72
- 1_8_7_330
- 1_9_1_378
- 1_9_2_180
- 1_9_3_125 (0)
- 1_9_3_392 (0)
- 2_1_10 (0)
- 2_2_9 (0)
- 2_4_6 (0)
- 2_5_5 (0)
- 2_6_3 (0)
- What's this?
This class represents a YAML sequence.
A YAML sequence is basically a list, and looks like this:
%YAML 1.1 --- - I am - a Sequence
A YAML sequence may have an anchor like this:
%YAML 1.1 --- &A [ "This sequence", "has an anchor" ]
A YAML sequence may also have a tag like this:
%YAML 1.1 --- !!seq [ "This sequence", "has a tag" ]
This class represents a sequence in a YAML document. A Psych::Nodes::Sequence node may have 0 or more children. Valid children for this node are:
Constants
FLOW = 2
BLOCK = 1
ANY = 0
Attributes
[RW] | style |
The sequence style used |
[RW] | implicit |
Is this sequence started implicitly? |
[RW] | tag |
The tag name for this sequence (if any) |
[RW] | anchor |
The anchor for this sequence (if any) |