Sesame-iOS/Sesame/Common/Extensions/UInt32+Random.swift
2023-12-12 17:33:42 +01:00

9 lines
132 B
Swift

import Foundation
extension UInt32 {
static func random() -> UInt32 {
random(in: UInt32.min...UInt32.max)
}
}