WriterFunc is used to implement one off io.Writers.
func(p []byte) (int, error)
| 2 | |
| 3 | // WriterFunc is used to implement one off io.Writers. |
| 4 | type WriterFunc func(p []byte) (int, error) |
| 5 | |
| 6 | func (f WriterFunc) Write(p []byte) (int, error) { |
| 7 | return f(p) |
no outgoing calls
no test coverage detected
searching dependent graphs…