trethaller
Results
1
issues of
trethaller
Currently, `ArrayBytes.pop/shift/splice` do not properly zero the underlying array, causing surprises when resizing it like so: ```haxe var a = [for(i in 0...10) i]; while(a.length > 0) a.pop(); a[9] =...