ByteInputAdapter reader wrapper
| 137 | |
| 138 | // ByteInputAdapter reader wrapper |
| 139 | type ByteInputAdapter struct { |
| 140 | r io.Reader |
| 141 | readBytes int |
| 142 | buf [4]byte |
| 143 | } |
| 144 | |
| 145 | var _ io.Reader = (*ByteInputAdapter)(nil) |
| 146 |
nothing calls this directly
no outgoing calls
no test coverage detected