I want to generate a Seq/List of true/false values which I can zip with some input in order to do the equivalent of checking whether a for loop index is odd/even.
Is there a better way than
input.zip((1 to n).map(_ % 2 == 0))
or
input.zip(List.tabulate(n)(_ % 2 != 0))
I would have thought something like (true, false).repeat(n/2) is more obvious
(true, false).repeat(n/2)would look like trouble to me: ifnis odd, you'd have a missing element at the end. – Jean-Philippe Pellet Feb 3 '12 at 17:26