- map<T, R>(project): OperatorFunction<T, R>
Parameters
- project: ((value, index) => R)
- (value, index): R
Returns R
Returns OperatorFunction<T, R>
- map<T, R, A>(project, thisArg): OperatorFunction<T, R>
Parameters
- project: ((this, value, index) => R)
- (this, value, index): R
Parameters
- this: A
- value: T
- index: number
Returns R
- thisArg: A
Returns OperatorFunction<T, R>
Deprecated
Use a closure instead of a
thisArg
. Signatures accepting athisArg
will be removed in v8.