| 195 | |
| 196 | |
| 197 | __hot slice slice_istream::readBytesInSet(slice set) noexcept { |
| 198 | const void *next = findByteNotIn(set); |
| 199 | if (!next) |
| 200 | next = end(); |
| 201 | slice result(buf, next); |
| 202 | setStart(next); |
| 203 | return result; |
| 204 | } |
| 205 | |
| 206 | |
| 207 | __hot uint8_t slice_istream::readByte() noexcept { |