Skip to content

Instantly share code, notes, and snippets.

@dcunited001
Last active February 22, 2016 13:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcunited001/bfb48a18e72d845452ad to your computer and use it in GitHub Desktop.
Save dcunited001/bfb48a18e72d845452ad to your computer and use it in GitHub Desktop.
pointers example in swift
// it's been a minute, so this probably doesn't run
class Foo
var mvpPointer: UnsafeMutablePointer<Void>? { get set }
}
let f = Foo()
let barz = [0 1 2 3]
memcpy(mvpPointer!, &barz, barz.count)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment