Hi
How could I build range (UnitRange) that doesn't include elements given some condition? Like if i'd like to build a range that doesn't contain elements that are divisible by 7 ( x mod 7 == 0). Is this possible for ranges or do I have to use some other type (it should be iterable)?
