public bool IsMatchAny(IEnumerable <char> characters)
 {
     return(_characters.Overlaps(characters));
 }
 public bool Overlaps(IEnumerable <string> other) => _data.Overlaps(other);