zipWith

Zip ranges together with operation fun. TODO Remove when Issue 8715 is fixed providing zipWith

  1. auto zipWith(Ranges ranges)
    zipWith
    (
    alias fun
    Ranges...
    )
    (
    Ranges ranges
    )
    if (
    Ranges.length >= 2 &&
    allSatisfy!(isInputRange, Ranges)
    )
  2. auto zipWith(StoppingPolicy sp, Ranges ranges)

Meta