For a loop with a range in CoffeeScript

Question Noob. I am trying to write a for loop with a range. For example, this is what I want to create in JavaScript:

var i, a, j, b, len = arr.length;
for (i = 0; i < len - 1; i++) {
    a = arr[i];
    for (j = i + 1; i < len; j++) {
        b = arr[j];
        doSomething(a, b);
    }
}

The closest I have come so far, but

  • It generates unnecessary and expensive slicing calls.
  • refers to the length of the array inside the inner loop

CoffeeScript:

for a, i in a[0...a.length-1]
    for b, j in a[i+1...a.length]
        doSomething a, b

Generated Code:

var a, b, i, j, _i, _j, _len, _len1, _ref, _ref1;

_ref = a.slice(0, a.length - 1);
for (i = _i = 0, _len = _ref.length; _i < _len; i = ++_i) {
  a = _ref[i];
  _ref1 = a.slice(i + 1, a.length);
  for (j = _j = 0, _len1 = _ref1.length; _j < _len1; j = ++_j) {
    b = _ref1[j];
    doSomething(a, b);
  }
}

(How) can this be expressed in CoffeeScript?

+7
source share
3 answers

Basically, transcribing your first JS code to CS:

len = arr.length
for i in [0...len - 1] by 1
  a = arr[i]
  for j in [i + 1...len] by 1
    b = arr[j]
    doSomething a, b
+9
source

It seems that the only way to avoid additional variables is through the http://js2.coffee loopwhile

i = 0
len = arr.length 

while i < len - 1
  a = arr[i]
  j = i + 1
  while j < len
    b = arr[j]
    doSomething a, b
    j++
  i++

or slightly less readable:

i = 0; len = arr.length - 1
while i < len
  a = arr[i++]; j = i
  while j <= len
    doSomething a, arr[j++]
+1
source

With CoffeeScript 2you can do

x for x in [0..10]

Source: https://coffeescript-cookbook.imtqy.com/chapters/syntax/for_loops

0
source