Float is a type constraint for float32 and float64.
| 15 | |
| 16 | // Float is a type constraint for float32 and float64. |
| 17 | type Float interface { |
| 18 | float32 | float64 |
| 19 | } |
| 20 | |
| 21 | var randForTesting = rand.New(rand.NewSource(uint64(time.Now().Unix()))) |
| 22 |
nothing calls this directly
no outgoing calls
no test coverage detected