Skip to content

Instantly share code, notes, and snippets.

@petrosDemetrakopoulos
Created March 17, 2021 20:21
Show Gist options
  • Select an option

  • Save petrosDemetrakopoulos/bcdbd8c1c5173559f943e875e00e0ad0 to your computer and use it in GitHub Desktop.

Select an option

Save petrosDemetrakopoulos/bcdbd8c1c5173559f943e875e00e0ad0 to your computer and use it in GitHub Desktop.
Core Foundation CFGetAllocator
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