(w io.Writer, format string, a ...any)
| 503 | } |
| 504 | |
| 505 | func fprintf(w io.Writer, format string, a ...any) { |
| 506 | _, _ = fmt.Fprintf(w, format, a...) |
| 507 | } |
| 508 | |
| 509 | func fprintln(w io.Writer, a ...any) { |
| 510 | _, _ = fmt.Fprintln(w, a...) |
no outgoing calls
no test coverage detected
searching dependent graphs…