mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
9 lines
174 B
Swift
9 lines
174 B
Swift
public struct ResilientGenericStruct<T> {
|
|
public init(value: T) {
|
|
size = MemoryLayout<T>.size
|
|
storage = value
|
|
}
|
|
public var size: Int
|
|
private var storage: T
|
|
}
|