24 #ifndef _INTEGERSET_HPP_
25 #define _INTEGERSET_HPP_
50 bool contains(
int n)
const {
return n>=begin && n<=end;}
92 Intervals::const_iterator
it_;
93 Intervals::const_iterator
end_;
116 void insert(
int a,
int b);
121 void parse(
const std::string& intervalList);
132 bool empty()
const {
return intervals_.empty();}
135 bool contains(
int n)
const;
138 bool hasUpperBound(
int n)
const;
141 size_t intervalCount()
const;
158 #endif // _INTEGERSET_HPP_