Initial commit

This commit is contained in:
2024-11-03 18:57:02 -06:00
commit a847840202
149 changed files with 143300 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
extension RandomNumberGenerator {
mutating func nextDouble() -> Double {
Double(next() >> 11) * 0x1.0p-53
}
mutating func nextFloat() -> Float {
Float(next() >> 40) * 0x1.0p-24
}
}