Float64 is a struct for concurrent-safe operation for type float64.
| 16 | |
| 17 | // Float64 is a struct for concurrent-safe operation for type float64. |
| 18 | type Float64 struct { |
| 19 | value uint64 |
| 20 | } |
| 21 | |
| 22 | // NewFloat64 creates and returns a concurrent-safe object for float64 type, |
| 23 | // with given initial value `value`. |
nothing calls this directly
no outgoing calls
no test coverage detected