class Psych::Nodes::Stream

child node for a Psych::Nodes::Stream node is Psych::Nodes::Document.
tree. This node must have one or more child nodes. The only valid
Represents a YAML stream. This is the root node for any YAML parse
##

def initialize encoding = UTF8

See also Psych::Handler#start_stream

defaults to Psych::Nodes::Stream::UTF8.
Create a new Psych::Nodes::Stream node with an +encoding+ that
##
def initialize encoding = UTF8
  super()
  @encoding = encoding
end