each.each

  1. Flag!"each" each(Range r)
  2. Flag!"each" each(Iterable r)
    template each(alias fun = "a")
    Flag!"each"
    each
    (
    Iterable
    )
    (
    auto ref Iterable r
    )
    if (
    isForeachIterable!Iterable ||
    __traits(compiles, Parameters!(Parameters!(r.opApply)))
    )

Parameters

r Iterable

range or iterable over which each iterates

Meta