Pattern.patterns

Undocumented in source. Be warned that the author may not have intended to support it.
struct Pattern
@safe pure inout
patterns
()

Examples

auto p = Pattern("a|bc|one|two three");
assert(p.patterns.equal([
    "a",
    "bc",
    "one",
    "two three"
]));

Meta