Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jacobsapps/115ce73d09ae6cf2e1aa4042d9d828ad to your computer and use it in GitHub Desktop.
Save jacobsapps/115ce73d09ae6cf2e1aa4042d9d828ad to your computer and use it in GitHub Desktop.
func run() {
var data = Data()
print("empty")
data.append(0x01)
print("inline")
data.append(contentsOf: [UInt8](repeating: 0xFF, count: 20))
print("inline slice")
data.append(contentsOf: [UInt8](repeating: 0xAA, count: Int(Int32.max)))
print("large slice")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment