I am in the process of adapting some code from std::io to embedded-io and I noticed some missing methods on mbedded_io::Seek/mbedded_io::BufRead compared to their equivalent std::io:
Do you plan to add them?
I am specifically interested in BufRead::skip_until and Seek::seek_relative that claims to perform better in some cases.
I am in the process of adapting some code from
std::iotoembedded-ioand I noticed some missing methods onmbedded_io::Seek/mbedded_io::BufReadcompared to their equivalentstd::io:Seek::seek_relativeBufRead::skip_untilDo you plan to add them?
I am specifically interested in
BufRead::skip_untilandSeek::seek_relativethat claims to perform better in some cases.