(value float64)
| 358 | } |
| 359 | |
| 360 | func isFiniteFloat(value float64) bool { |
| 361 | return !math.IsNaN(value) && !math.IsInf(value, 0) |
| 362 | } |
| 363 | |
| 364 | // SafeBoolValue safely converts various types to boolean representation. |
| 365 | // |
no outgoing calls
no test coverage detected