Sprintf formats according to a format specifier and returns the resulting string.
(format string, a ...any)
| 26 | |
| 27 | // Sprintf formats according to a format specifier and returns the resulting string. |
| 28 | func Sprintf(format string, a ...any) string { |
| 29 | return color.Sprintf(format, a...) |
| 30 | } |
| 31 | |
| 32 | // Sprintfln formats according to a format specifier and returns the resulting string. |
| 33 | // Spaces are always added between operands and a newline is appended. |
searching dependent graphs…