Place
public struct Place : Regular, CustomStringConvertible
A typed location in memory.
-
The containing allocation.
Declaration
Swift
public let allocation: Allocation.ID -
The offset from the beginning of that
allocation.Declaration
Swift
public let offset: Storage.Index -
The type to be accessed at
offsetinallocation.Declaration
Swift
public let type: AnyType -
Address having same
allocationandoffsetas ofself.Declaration
Swift
public var address: Address { get } -
An instance in the given
allocationatoffsetto be accessed astype.Declaration
Swift
public init(allocation: Allocation.ID, offset: Storage.Index, type: AnyType) -
Declaration
Swift
public var description: String { get }
View on GitHub