Closed IvanUkhov closed 4 years ago
Based on the discussion in that issue it looks like Read::chars
is now deprecated and io::Chars
will not be coming to std
after all (unless I'm misreading something).
Yeah, I was checking it recently and came to a similar conclusion. Then there must be some other preferred way of doing this.
When
io::Chars
lands on stable, consider switchingReader
fromstr::Chars
toio::Chars
so that the crate could truly work with abstractRead
ers andWrite
rs instead of in-memoryString
s.