2026-03-17 13:31:18 -07:00

20 lines
241 B
Java

package com.tridium.bql;
public interface RangeSet {
int getCount();
Range getRange(int i);
RangeSet intersection();
boolean isAll();
boolean isNone();
RangeSet not();
void sort();
RangeSet union();
}