hostlist-parser 0.1.6

Parses hostlist expressions into a Vec of Strings
Documentation
---
source: src/lib.rs
expression: "disjoint_digits().easy_parse(\"1,2,3,4,5]\")"
---
Ok(
    (
        Disjoint(
            [
                (
                    0,
                    1,
                ),
                (
                    0,
                    2,
                ),
                (
                    0,
                    3,
                ),
                (
                    0,
                    4,
                ),
                (
                    0,
                    5,
                ),
            ],
        ),
        "]",
    ),
)