Hi, this seems like a simple question, but I can’t seem to find the answer on google. In AS3 you could do for (var i:int = a.length - 1; i >= 0; --i) { } but in HaXe, you can only do for (i in 0 ... a.length) { } and this only iterates forward.
Thanks.