Iterate over two arguments at once

Steven Schveighoffer via Digitalmars-d-learn digitalmars-d-learn at puremagic.com
Mon Sep 19 11:19:14 PDT 2016


On 9/19/16 2:10 PM, bachmeier wrote:
> Suppose I want to iterate over two arrays at once:
>
> foreach(v1, v2; [1.5, 2.5, 3.5], [4.5, 5.5, 6.5]) {
>   ...
> }
>
> I have seen a way to do this but cannot remember what it is and cannot
> find it.

http://dlang.org/phobos/std_range.html#.zip

-Steve


More information about the Digitalmars-d-learn mailing list