Skip to content

Instantly share code, notes, and snippets.

@el-hoshino
Created March 2, 2017 07:56
Show Gist options
  • Save el-hoshino/b86aaf4cf0d23d7544249b74bd5a1072 to your computer and use it in GitHub Desktop.
Save el-hoshino/b86aaf4cf0d23d7544249b74bd5a1072 to your computer and use it in GitHub Desktop.
そういえば今日unsafePointerの話あったけど、ポインター使うとこんなこともできるよ #CodePiece #tryswiftconf
var age = 28
let unknown = withUnsafePointer(to: &age) { $0.advanced(by: 12).pointee }
print(unknown) // 7597125269629269102
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment