Decimal implements formatStringInterpolator.Decimal.
(arg ref.Val, locale string)
| 275 | |
| 276 | // Decimal implements formatStringInterpolator.Decimal. |
| 277 | func (c *stringFormatter) Decimal(arg ref.Val, locale string) (string, error) { |
| 278 | return formatDecimal(arg, locale) |
| 279 | } |
| 280 | |
| 281 | // Fixed implements formatStringInterpolator.Fixed. |
| 282 | func (c *stringFormatter) Fixed(precision *int) func(ref.Val, string) (string, error) { |
nothing calls this directly
no test coverage detected