(value *float64)
| 4270 | } |
| 4271 | |
| 4272 | func formatFloat64Ptr(value *float64) string { |
| 4273 | if value == nil { |
| 4274 | return "" |
| 4275 | } |
| 4276 | return strconv.FormatFloat(*value, 'f', -1, 64) |
| 4277 | } |
| 4278 | |
| 4279 | func formatStringPtr(value *string) string { |
| 4280 | if value == nil { |
no outgoing calls
no test coverage detected