SteamNetworkingMicroseconds
Swift
public struct SteamNetworkingMicroseconds: Hashable, Sendable
extension SteamNetworkingMicroseconds: ExpressibleByIntegerLiteral
Steamworks SteamNetworkingMicroseconds
Topics
var value: CLongLong
var value: CLongLong
Declaration
Swift
public let value: CLongLong
init(CLongLong)
init(CLongLong)
Declaration
Swift
public init(_ value: CLongLong)
init(integerLiteral: CLongLong)
init(integerLiteral: CLongLong)
Creates an instance initialized to the specified integer value.
Do not call this initializer directly. Instead, initialize a variable or constant using an integer literal. For example:
let x = 23
In this example, the assignment to the x
constant calls this integer literal initializer behind the scenes.
Declaration
Swift
public init(integerLiteral value: CLongLong)
Parameters
value |
The value to create. |