Maps the values of the iterable to other values using the given mapper.
Optional
import { map } from 'deleight/generators';map(range(10), i=> 2 * i); Copy
import { map } from 'deleight/generators';map(range(10), i=> 2 * i);
Maps the values of the iterable to other values using the given mapper.