From ada655759393e30ae25296b94c5cc07b27a4d683 Mon Sep 17 00:00:00 2001
From: griesemer
-The range expression is evaluated once before beginning the loop,
-with one exception: if the range expression is an array or a pointer to an array
-and at most one iteration variable is present, only the range expression's
-length is evaluated; if that length is constant,
-by definition
-the range expression itself will not be evaluated.
+The range expression x
is evaluated once before beginning the loop,
+with one exception: if at most one iteration variable is present and
+len(x)
is constant,
+the range expression is not evaluated.
-- 2.48.1