Represents a YAML stream.  This is the root node for any YAML parse tree.  This node must have one or more child nodes.  The only valid child node for a Psych::Nodes::Stream node is Psych::Nodes::Document.
      Constants
    
  Any encoding
UTF-16BE encoding
UTF-16LE encoding
UTF-8 encoding
      Attributes
    
  
          
            Read & Write
          
        
      The encoding used for this stream
      Class Methods
    
  
          
            2.6
          
          
            View on GitHub
            
          
        
        
          
            # File tmp/rubies/ruby-2.6.10/ext/psych/lib/psych/nodes/stream.rb, line 32
def initialize encoding = UTF8
  super()
  @encoding = encoding
end
          
        
      Create a new Psych::Nodes::Stream node with an encoding that defaults to Psych::Nodes::Stream::UTF8.
See also Psych::Handler#start_stream
      Instance Methods
    
  
          
            #
          
          
        
      
          
            2.6
          
          
            View on GitHub
            
          
        
        
          
            # File tmp/rubies/ruby-2.6.10/ext/psych/lib/psych/nodes/stream.rb, line 37
def stream?; true; end
          
        
      No documentation available