Created
February 27, 2021 07:12
-
-
Save timbaev/333507e1d87f991dc3fd85ae460c4c6f to your computer and use it in GitHub Desktop.
[FullResume] size check #memorySwift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct FullResume { | |
let hasVehicle: Bool | |
let id: String | |
let age: Int | |
} | |
MemoryLayout<FullResume>.size // 32 ??? | |
MemoryLayout<Bool>.size // 1 | |
+ MemoryLayout<String>.size // 16 | |
+ MemoryLayout<Int>.size // 8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment