The OpenD Programming Language

map.map

  1. auto map(Slice!(Iterator, N, kind) slice)
  2. auto map(T[] array)
    template map(fun...)
    static if(fun.length == 1)
    static if(__traits(isSame, naryFun!(fun[0]), fun[0]))
    map
    (
    T
    )
    (
    T[] array
    )
    if (
    fun.length
    )
  3. auto map(T withAsSlice)
  4. auto map(Range r)

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