{
    "content": [
        {
            "type": "text",
            "text": "# Psych::Stream (ri)\n\n## Section Outline\n\n- **Psych::Stream < Psych::Visitors::YAMLTree** (1 lines)\n- **Includes:** (3 lines)\n- **Extended by:** (24 lines)\n\n## Full Content\n\n### Psych::Stream < Psych::Visitors::YAMLTree\n\n------------------------------------------------------------------------\n\n### Includes:\n\nPsych::Streaming (from gem psych-5.4.0)\n\n------------------------------------------------------------------------\n\n### Extended by:\n\nPsych::Streaming::ClassMethods (from gem psych-5.4.0)\n\n(from gem psych-5.4.0)\n------------------------------------------------------------------------\nPsych::Stream is a streaming YAML emitter.  It will not buffer your\nYAML, but send it straight to an IO.\n\nHere is an example use:\n\nstream = Psych::Stream.new($stdout)\nstream.start\nstream.push({:foo => 'bar'})\nstream.finish\n\nYAML will be immediately emitted to $stdout with no buffering.\n\nPsych::Stream#start will take a block and ensure that\nPsych::Stream#finish is called, so you can do this form:\n\nstream = Psych::Stream.new($stdout)\nstream.start do |em|\nem.push(:foo => 'bar')\nend\n------------------------------------------------------------------------\n\n"
        }
    ],
    "structuredContent": {
        "command": "Psych::Stream",
        "section": "",
        "mode": "ri",
        "summary": null,
        "synopsis": null,
        "tldr_summary": null,
        "tldr_examples": [],
        "tldr_source": null,
        "flags": [],
        "examples": [],
        "see_also": [],
        "section_outline": [
            {
                "name": "Psych::Stream < Psych::Visitors::YAMLTree",
                "lines": 1,
                "subsections": []
            },
            {
                "name": "Includes:",
                "lines": 3,
                "subsections": []
            },
            {
                "name": "Extended by:",
                "lines": 24,
                "subsections": []
            }
        ]
    }
}