TM-SGNL-iOS/SignalServiceKit/tests/TestUtils/Numbers+Random.swift
TeleMessage developers dde0620daf initial commit
2025-05-03 12:28:28 -07:00

13 lines
342 B
Swift

//
// Copyright 2023 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
//
extension UInt64 {
static var maxRandom: UInt64 { UInt64.random(in: 0...UInt64.max) }
static var maxRandomInt64Compat: UInt64 { UInt64(Int64.maxRandom) }
}
extension Int64 {
static var maxRandom: Int64 { Int64.random(in: 0...Int64.max) }
}