Closed
Description
C's stdio has a function ungetc
that lets you push back a single char on a stream. While we could expose support for the c functions, this wouldn't help with our str/bytes writers. Instead, how about we make a trait/impl io::Writer
wrapper that supports lookahead and pushback for any io::Writer
s?