Sprint is a wrapper for fmt.Sprint that treats each argument as if it were passed with a Formatter interface returned by c.NewFormatter. It returns the resulting string. See NewFormatter for formatting details. This function is shorthand for the following syntax: fmt.Sprint(c.NewFormatter(a), c
(a ...interface{})
| 195 | // |
| 196 | // fmt.Sprint(c.NewFormatter(a), c.NewFormatter(b)) |
| 197 | func (c *ConfigState) Sprint(a ...interface{}) string { |
| 198 | return fmt.Sprint(c.convertArgs(a)...) |
| 199 | } |
| 200 | |
| 201 | // Sprintf is a wrapper for fmt.Sprintf that treats each argument as if it were |
| 202 | // passed with a Formatter interface returned by c.NewFormatter. It returns |