Lines Matching full:sequence
24 A sequence is a list of items where each item starts with a leading dash ('-').
29 # a sequence
34 You can combine mappings and sequences by indenting. For example a sequence
35 of mappings in which one of the mapping values is itself a sequence:
39 # a sequence of mappings with one key's value being a sequence
54 Sequence" in which you put comma separated sequence elements into square
60 # a sequence of mappings with one key's value being a flow sequence
134 A YAML sequence is automatically inferred if you data type has begin()/end()
224 YAML scalars are just strings (i.e. not a sequence or mapping). The YAML I/O
247 in sequence. When reading, YAML I/O will validate that the string found
344 converting such fields to a flow sequence. For instance suppose you
392 cause the corresponding string to be added to the flow sequence. The opposite
636 Sequence
639 To be translated to or from a YAML sequence for your type T you must specialize
652 The size() method returns how many elements are currently in your sequence.
653 The element() method returns a reference to the i'th element in the sequence.
660 Flow Sequence
662 A YAML "flow sequence" is a sequence that when written to YAML it uses the
663 inline notation (e.g [ foo, bar ] ). To specify that a sequence type should
664 be written in YAML as a flow sequence, your SequenceTraits specialization should
674 // The existence of this member causes YAML I/O to use a flow sequence
679 structures, then then when converted to YAML, a flow sequence of integers
707 will be a mapping or sequence. For those cases, the following is not needed.
757 streaming as YAML is a mapping, scalar, or sequence, then Output assumes you