Trevor Saunders wrote:

for (auto l = tarray.Length() - 1; l < tarray.Length(); l--)

Which is how you'd iterate backwards over a non empty array.

for (auto l = tarray.Length(); l-- > 0; )

--
Warning: May contain traces of nuts.
_______________________________________________
dev-platform mailing list
dev-platform@lists.mozilla.org
https://lists.mozilla.org/listinfo/dev-platform

Reply via email to