{
    "content": [
        {
            "type": "text",
            "text": "# overloading (man)\n\n## NAME\n\noverloading - perl pragma to lexically control overloading\n\n## SYNOPSIS\n\n{\nno overloading;\nmy $str = \"$object\"; # doesn't call stringification overload\n}\n# it's lexical, so this stringifies:\nwarn \"$object\";\n# it can be enabled per op\nno overloading qw(\"\");\nwarn \"$object\";\n# and also reenabled\nuse overloading;\n\n## DESCRIPTION\n\nThis pragma allows you to lexically disable or enable overloading.\n\n## Sections\n\n- **NAME**\n- **SYNOPSIS**\n- **DESCRIPTION**\n\nUse structuredContent.sections for detailed options, examples, and full documentation.\n"
        }
    ],
    "structuredContent": {
        "command": "overloading",
        "section": "",
        "mode": "man",
        "summary": "overloading - perl pragma to lexically control overloading",
        "synopsis": "{\nno overloading;\nmy $str = \"$object\"; # doesn't call stringification overload\n}\n# it's lexical, so this stringifies:\nwarn \"$object\";\n# it can be enabled per op\nno overloading qw(\"\");\nwarn \"$object\";\n# and also reenabled\nuse overloading;",
        "tldr_summary": null,
        "tldr_examples": [],
        "tldr_source": null,
        "flags": [],
        "examples": [],
        "see_also": [],
        "section_outline": [
            {
                "name": "NAME",
                "lines": 2,
                "subsections": []
            },
            {
                "name": "SYNOPSIS",
                "lines": 15,
                "subsections": []
            },
            {
                "name": "DESCRIPTION",
                "lines": 15,
                "subsections": []
            }
        ],
        "sections": {
            "NAME": {
                "content": "overloading - perl pragma to lexically control overloading\n",
                "subsections": []
            },
            "SYNOPSIS": {
                "content": "{\nno overloading;\nmy $str = \"$object\"; # doesn't call stringification overload\n}\n\n# it's lexical, so this stringifies:\nwarn \"$object\";\n\n# it can be enabled per op\nno overloading qw(\"\");\nwarn \"$object\";\n\n# and also reenabled\nuse overloading;\n",
                "subsections": []
            },
            "DESCRIPTION": {
                "content": "This pragma allows you to lexically disable or enable overloading.\n\n\"no overloading\"\nDisables overloading entirely in the current lexical scope.\n\n\"no overloading @ops\"\nDisables only specific overloads in the current lexical scope.\n\n\"use overloading\"\nReenables overloading in the current lexical scope.\n\n\"use overloading @ops\"\nReenables overloading only for specific ops in the current lexical scope.\n\nperl v5.38.2                                 2026-08-18                           overloading(3perl)",
                "subsections": []
            }
        }
    }
}