Sesame-iOS/Sesame/Common/Extensions/UInt32+Random.swift

9 lines
132 B
Swift
Raw Normal View History

2023-12-12 17:33:42 +01:00
import Foundation
extension UInt32 {
static func random() -> UInt32 {
random(in: UInt32.min...UInt32.max)
}
}