Created
March 17, 2021 20:21
-
-
Save petrosDemetrakopoulos/bcdbd8c1c5173559f943e875e00e0ad0 to your computer and use it in GitHub Desktop.
Core Foundation CFGetAllocator
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
| class Car { | |
| var wheel: Int = 0 | |
| init(wheels: Int) { | |
| self.wheel = wheels | |
| } | |
| } | |
| let myCar = Car(wheels: 4) | |
| print(CFGetAllocator(myCar)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment