Open
Description
Next to the existing write_vectored
and read_vectored
APIs, it would be great to have write_vectored_at
and read_vectored_at
methods for File
s on UNIX systems, corresponding to the pwritev
and preadv
syscalls. This would be an easy way to add means for high performance file IO using the standard library File
type.
As far as I understand, the equivalent does not exist on Windows, so this would probably have to live in the unix FileExt
trait.
If this is deemed desirable, I'd be happy to send a PR for this.