hostlist-parser 0.1.6

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