(f T, thousand float64, prefixes []string, suffix string)
| 29 | } |
| 30 | |
| 31 | func toDecimalUnitString[T realNumber](f T, thousand float64, prefixes []string, suffix string) string { |
| 32 | return toDecimalUnitStringImp(float64(f), thousand, prefixes, suffix) |
| 33 | } |
| 34 | |
| 35 | func toDecimalUnitStringImp(f, thousand float64, prefixes []string, suffix string) string { |
| 36 | for i := range prefixes { |
no test coverage detected