Example:
auto notBak = negateMask(globMask("*.bak"));
assert(notBak.isCovered("file.txt"));
assert(!notBak.isCovered("file.bak"));Creates a negation mask using UFCS-friendly syntax.
inner | the mask to negate |
Example:
auto notBak = negateMask(globMask("*.bak"));
assert(notBak.isCovered("file.txt"));
assert(!notBak.isCovered("file.bak"));