| 284 | |
| 285 | |
| 286 | class RandBinFloat(RandFloat): |
| 287 | def _fix(self): |
| 288 | # type: () -> float |
| 289 | return cast( |
| 290 | float, |
| 291 | struct.unpack("!f", bytes(RandBin(4)))[0] |
| 292 | ) |
| 293 | |
| 294 | |
| 295 | class RandNumGamma(RandNum): |
no outgoing calls
no test coverage detected
searching dependent graphs…