package util

// WriterFunc is used to implement one off io.Writers.
type WriterFunc func(p []byte) (int, error)

func ( WriterFunc) ( []byte) (int, error) {
	return ()
}

// ReaderFunc is used to implement one off io.Readers.
type ReaderFunc func(p []byte) (int, error)

func ( ReaderFunc) ( []byte) (int, error) {
	return ()
}