| 111 | typedef typename Encoding::Ch Ch; |
| 112 | |
| 113 | GenericStringStream(const Ch *src) : src_(src), head_(src) {} |
| 114 | |
| 115 | Ch Peek() const { return *src_; } |
| 116 | Ch Take() { return *src_++; } |
nothing calls this directly
no outgoing calls
no test coverage detected