{
    "content": [
        {
            "type": "text",
            "text": "# Module::CoreList::Utils (perldoc)\n\n**Summary:** Module::CoreList::Utils - what utilities shipped with versions of perl\n\n**Synopsis:** use Module::CoreList::Utils;\nprint $Module::CoreList::Utils::utilities{5.009003}{ptar}; # prints 1\nprint Module::CoreList::Utils->firstrelease('corelist');\n# prints 5.008009\nprint Module::CoreList::Utils->firstreleasebydate('corelist');\n# prints 5.009002\n\n## Section Outline\n\n- **NAME** (2 lines)\n- **SYNOPSIS** (10 lines)\n- **DESCRIPTION** (9 lines)\n- **FUNCTIONS API** (30 lines)\n- **DATA STRUCTURES** (6 lines)\n- **AUTHOR** (7 lines)\n- **LICENSE** (5 lines)\n- **SEE ALSO** (2 lines)\n\n## Full Content\n\n### NAME\n\nModule::CoreList::Utils - what utilities shipped with versions of perl\n\n### SYNOPSIS\n\nuse Module::CoreList::Utils;\n\nprint $Module::CoreList::Utils::utilities{5.009003}{ptar}; # prints 1\n\nprint Module::CoreList::Utils->firstrelease('corelist');\n# prints 5.008009\n\nprint Module::CoreList::Utils->firstreleasebydate('corelist');\n# prints 5.009002\n\n### DESCRIPTION\n\nModule::CoreList::Utils provides information on which core and dual-life utilities shipped with\neach version of perl.\n\nIt provides a number of mechanisms for querying this information.\n\nThere is a functional programming API available for programmers to query information.\n\nProgrammers may also query the contained hash structure to find relevant information.\n\n### FUNCTIONS API\n\nThese are the functions that are available, they may either be called as functions or class\nmethods:\n\nModule::CoreList::Utils::firstrelease('corelist'); # as a function\n\nModule::CoreList::Utils->firstrelease('corelist'); # class method\n\n\"utilities\"\nRequires a perl version as an argument, returns a list of utilities that shipped with that\nversion of perl, or undef/empty list if that perl doesn't exist.\n\n\"firstrelease( UTILITY )\"\nRequires a UTILITY name as an argument, returns the perl version when that utility first\nappeared in core as ordered by perl version number or undef ( in scalar context ) or an\nempty list ( in list context ) if that utility is not in core.\n\n\"firstreleasebydate( UTILITY )\"\nRequires a UTILITY name as an argument, returns the perl version when that utility first\nappeared in core as ordered by release date or undef ( in scalar context ) or an empty list\n( in list context ) if that utility is not in core.\n\n\"removedfrom( UTILITY )\"\nTakes a UTILITY name as an argument, returns the first perl version where that utility was\nremoved from core. Returns undef if the given utility was never in core or remains in core.\n\n\"removedfrombydate( UTILITY )\"\nTakes a UTILITY name as an argument, returns the first perl version by release date where\nthat utility was removed from core. Returns undef if the given utility was never in core or\nremains in core.\n\n### DATA STRUCTURES\n\nThese are the hash data structures that are available:\n\n%Module::CoreList::Utils::utilities\nA hash of hashes that is keyed on perl version as indicated in $]. The second level hash is\nutility / defined pairs.\n\n### AUTHOR\n\nChris \"BinGOs\" Williams <chris@bingosnet.co.uk>\n\nCurrently maintained by the perl 5 porters <perl5-porters@perl.org>.\n\nThis module is the result of archaeology undertaken during QA Hackathon in Lancaster, April\n2013.\n\n### LICENSE\n\nCopyright (C) 2013 Chris Williams. All Rights Reserved.\n\nThis module is free software; you can redistribute it and/or modify it under the same terms as\nPerl itself.\n\n### SEE ALSO\n\ncorelist, Module::CoreList, perl, <http://perlpunks.de/corelist>\n\n"
        }
    ],
    "structuredContent": {
        "command": "Module::CoreList::Utils",
        "section": "",
        "mode": "perldoc",
        "summary": "Module::CoreList::Utils - what utilities shipped with versions of perl",
        "synopsis": "use Module::CoreList::Utils;\nprint $Module::CoreList::Utils::utilities{5.009003}{ptar}; # prints 1\nprint Module::CoreList::Utils->firstrelease('corelist');\n# prints 5.008009\nprint Module::CoreList::Utils->firstreleasebydate('corelist');\n# prints 5.009002",
        "tldr_summary": null,
        "tldr_examples": [],
        "tldr_source": null,
        "flags": [],
        "examples": [],
        "see_also": [],
        "section_outline": [
            {
                "name": "NAME",
                "lines": 2,
                "subsections": []
            },
            {
                "name": "SYNOPSIS",
                "lines": 10,
                "subsections": []
            },
            {
                "name": "DESCRIPTION",
                "lines": 9,
                "subsections": []
            },
            {
                "name": "FUNCTIONS API",
                "lines": 30,
                "subsections": []
            },
            {
                "name": "DATA STRUCTURES",
                "lines": 6,
                "subsections": []
            },
            {
                "name": "AUTHOR",
                "lines": 7,
                "subsections": []
            },
            {
                "name": "LICENSE",
                "lines": 5,
                "subsections": []
            },
            {
                "name": "SEE ALSO",
                "lines": 2,
                "subsections": []
            }
        ],
        "sections": {
            "NAME": {
                "content": "Module::CoreList::Utils - what utilities shipped with versions of perl\n",
                "subsections": []
            },
            "SYNOPSIS": {
                "content": "use Module::CoreList::Utils;\n\nprint $Module::CoreList::Utils::utilities{5.009003}{ptar}; # prints 1\n\nprint Module::CoreList::Utils->firstrelease('corelist');\n# prints 5.008009\n\nprint Module::CoreList::Utils->firstreleasebydate('corelist');\n# prints 5.009002\n",
                "subsections": []
            },
            "DESCRIPTION": {
                "content": "Module::CoreList::Utils provides information on which core and dual-life utilities shipped with\neach version of perl.\n\nIt provides a number of mechanisms for querying this information.\n\nThere is a functional programming API available for programmers to query information.\n\nProgrammers may also query the contained hash structure to find relevant information.\n",
                "subsections": []
            },
            "FUNCTIONS API": {
                "content": "These are the functions that are available, they may either be called as functions or class\nmethods:\n\nModule::CoreList::Utils::firstrelease('corelist'); # as a function\n\nModule::CoreList::Utils->firstrelease('corelist'); # class method\n\n\"utilities\"\nRequires a perl version as an argument, returns a list of utilities that shipped with that\nversion of perl, or undef/empty list if that perl doesn't exist.\n\n\"firstrelease( UTILITY )\"\nRequires a UTILITY name as an argument, returns the perl version when that utility first\nappeared in core as ordered by perl version number or undef ( in scalar context ) or an\nempty list ( in list context ) if that utility is not in core.\n\n\"firstreleasebydate( UTILITY )\"\nRequires a UTILITY name as an argument, returns the perl version when that utility first\nappeared in core as ordered by release date or undef ( in scalar context ) or an empty list\n( in list context ) if that utility is not in core.\n\n\"removedfrom( UTILITY )\"\nTakes a UTILITY name as an argument, returns the first perl version where that utility was\nremoved from core. Returns undef if the given utility was never in core or remains in core.\n\n\"removedfrombydate( UTILITY )\"\nTakes a UTILITY name as an argument, returns the first perl version by release date where\nthat utility was removed from core. Returns undef if the given utility was never in core or\nremains in core.\n",
                "subsections": []
            },
            "DATA STRUCTURES": {
                "content": "These are the hash data structures that are available:\n\n%Module::CoreList::Utils::utilities\nA hash of hashes that is keyed on perl version as indicated in $]. The second level hash is\nutility / defined pairs.\n",
                "subsections": []
            },
            "AUTHOR": {
                "content": "Chris \"BinGOs\" Williams <chris@bingosnet.co.uk>\n\nCurrently maintained by the perl 5 porters <perl5-porters@perl.org>.\n\nThis module is the result of archaeology undertaken during QA Hackathon in Lancaster, April\n2013.\n",
                "subsections": []
            },
            "LICENSE": {
                "content": "Copyright (C) 2013 Chris Williams. All Rights Reserved.\n\nThis module is free software; you can redistribute it and/or modify it under the same terms as\nPerl itself.\n",
                "subsections": []
            },
            "SEE ALSO": {
                "content": "corelist, Module::CoreList, perl, <http://perlpunks.de/corelist>\n",
                "subsections": []
            }
        }
    }
}