rcmap.rcmap

  1. auto rcmap(Slice!(Iterator, N, kind) slice)
  2. auto rcmap(T[] array)
  3. auto rcmap(T withAsSlice)
    template rcmap(fun...)
    @optmath
    static if(fun.length == 1)
    static if(__traits(isSame, naryFun!(fun[0]), fun[0]))
    @optmath
    rcmap
    (
    T
    )
    if (
    fun.length
    )
  4. auto rcmap(Range r)
  5. alias rcmap = .rcmap!(staticMap!(naryFun, fun))
  6. alias rcmap = .rcmap!(adjoin!fun)

Return Value

Type: auto

ndslice or an input range with each fun applied to all the elements. If there is more than one fun, the element type will be Tuple containing one element for each fun.

Meta