Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
func testAppendInt() {
var array : Int[] = []
self.measureBlock() {
for (var i = 0; i < 1_000_000; ++i) {
array.append(i)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment