| 11 | // - `[` and `]` (IPv6 brackets) - code points 91, 93 |
| 12 | |
| 13 | SC::HttpURLQueryIterator::HttpURLQueryIterator(StringSpan query) : search(query) |
| 14 | { |
| 15 | if (search.sizeInBytes() > 0 and search.bytesWithoutTerminator()[0] == '?') |
| 16 | { |
| 17 | cursor = 1; |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | bool SC::HttpURLQueryIterator::next(HttpURLQueryItem& item) |
| 22 | { |
nothing calls this directly
no test coverage detected