| 5 | namespace search |
| 6 | { |
| 7 | JoinIterator::JoinIterator(StringSliceBase const & slice, Position position) : m_slice(slice) |
| 8 | { |
| 9 | if (position == Position::Begin) |
| 10 | { |
| 11 | m_string = 0; |
| 12 | m_offset = 0; |
| 13 | Normalize(); |
| 14 | } |
| 15 | else |
| 16 | { |
| 17 | m_string = GetMaxSize(); |
| 18 | m_offset = 0; |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | // static |
| 23 | JoinIterator JoinIterator::Begin(StringSliceBase const & slice) |
nothing calls this directly
no test coverage detected