예제 #1
0
파일: interval.hpp 프로젝트: go4and/lib
 inline const_iterator begin() const { return value.begin(); }
예제 #2
0
파일: interval.hpp 프로젝트: go4and/lib
 inline const_iterator end() const { return value.end(); }
예제 #3
0
파일: interval.hpp 프로젝트: go4and/lib
 void add(int f, int l)
 {
     value.push_back(value_type(f, l));
 }