readv_reader_wasm.go 182 B

1234567891011121314
  1. // +build wasm
  2. package buf
  3. import (
  4. "io"
  5. "syscall"
  6. )
  7. const useReadv = false
  8. func NewReadVReader(reader io.Reader, rawConn syscall.RawConn) Reader {
  9. panic("not implemented")
  10. }