| 54 | } |
| 55 | |
| 56 | TSet<wchar32> ToSet() const |
| 57 | { |
| 58 | TSet<wchar32> ret; |
| 59 | for (auto&& bound : m_bounds) |
| 60 | for (wchar32 c = bound.first; c <= bound.second; ++c) |
| 61 | ret.insert(c); |
| 62 | return ret; |
| 63 | } |
| 64 | |
| 65 | private: |
| 66 | TVector<ypair<wchar32, wchar32> > m_bounds; |