class Psych::Nodes::Sequence

def initialize anchor = nil, tag = nil, implicit = true, style = BLOCK

See Psych::Handler#start_sequence

+style+ is an integer indicating the list style.
implicitly started.
+implicit+ a boolean indicating whether or not the sequence was
+tag+ is the tag associated with the sequence or nil.
+anchor+ is the anchor associated with the sequence or nil.

Create a new object representing a YAML sequence.
##
def initialize anchor = nil, tag = nil, implicit = true, style = BLOCK
  super()
  @anchor   = anchor
  @tag      = tag
  @implicit = implicit
  @style    = style
end