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 Files 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.
Next to the existing
write_vectoredandread_vectoredAPIs, it would be great to havewrite_vectored_atandread_vectored_atmethods forFiles on UNIX systems, corresponding to thepwritevandpreadvsyscalls. This would be an easy way to add means for high performance file IO using the standard libraryFiletype.As far as I understand, the equivalent does not exist on Windows, so this would probably have to live in the unix
FileExttrait.If this is deemed desirable, I'd be happy to send a PR for this.