(reader io.Reader, buff []byte)
| 232 | } |
| 233 | |
| 234 | func ExampleIs(reader io.Reader, buff []byte) { |
| 235 | _, err := reader.Read(buff) |
| 236 | if Is(err, io.EOF) { |
| 237 | return |
| 238 | } |
| 239 | } |
| 240 | |
| 241 | func ExampleNew(UnexpectedEOF error) error { |
| 242 | // calling New attaches the current stacktrace to the existing UnexpectedEOF error |
nothing calls this directly
no test coverage detected
searching dependent graphs…