Works similarly to Array.map but accepts hyper-array.
It returns a hyper-value of new array of new type (new type is the result type of map function)
that always equals to result of applying Array.map method to the original array
It takes hyper-value of T[] and return a hyper-value of R[], while map function is (item: T) => R
Works similarly to
Array.map
but accepts hyper-array. It returns a hyper-value of new array of new type (new type is the result type of map function) that always equals to result of applyingArray.map
method to the original array It takes hyper-value ofT[]
and return a hyper-value ofR[]
, while map function is(item: T) => R