| 220 | |
| 221 | |
| 222 | void slice_istream::rewindTo(const void *pos) { |
| 223 | // There's no way to validate this since we don't keep track of the original start of the |
| 224 | // stream (the original `buf` value.) We could add that as a data member; is it worth it? |
| 225 | assert_precondition(pos <= buf); |
| 226 | setStart(pos); |
| 227 | } |
| 228 | |
| 229 | |
| 230 | #pragma mark NUMERIC INPUT: |
nothing calls this directly
no outgoing calls
no test coverage detected