NimbleTimeInterval
public enum NimbleTimeInterval : Sendable, Equatable
extension NimbleTimeInterval: CustomStringConvertible
A reimplementation of DispatchTimeInterval
without the never
case, and conforming to Sendable
.
-
Undocumented
Declaration
Swift
case seconds(Int)
-
Undocumented
Declaration
Swift
case milliseconds(Int)
-
Undocumented
Declaration
Swift
case microseconds(Int)
-
Undocumented
Declaration
Swift
case nanoseconds(Int)
-
Declaration
Swift
public static func < (lhs: NimbleTimeInterval, rhs: NimbleTimeInterval) -> Bool
-
Undocumented
Declaration
Swift
public var dispatchTimeInterval: DispatchTimeInterval { get }
-
Undocumented
Declaration
Swift
public var nanoseconds: UInt64 { get }
-
Declaration
Swift
public var description: String { get }
-
Undocumented
Declaration
Swift
public var timeInterval: TimeInterval { get }