* Creates an array of values by running each element in the collection through the callback. * The callback is bound to thisArg and invoked with three arguments; (value, index|key, * collection). * * If a property name is provided for callback the created "_.pluck" style callback will retu
( collection: List<T>, callback: ListIterator<T, TResult>, thisArg?: any)
| 1865 | * @return The mapped array result. |
| 1866 | **/ |
| 1867 | map<T, TResult>( |
| 1868 | collection: List<T>, |
| 1869 | callback: ListIterator<T, TResult>, |
| 1870 | thisArg?: any): TResult[]; |
no outgoing calls
no test coverage detected