import { map_fn_T } from '../map_fn/index.js' /** * Map return value of `fn(a[], i)` into an Array. */ export declare function map( a:readonly Val[], fn:map_fn_T ):Out[] export declare function maybe_map( maybe_a:readonly Val[]|undefined, fn:map_fn_T, or?:Or ):Out[]|Or /** * Returns Function returning [map](#map) with `fn`. */ export declare function map_( fn:(val:I, idx:number)=>O ):(a:readonly I[])=>O[] export declare function maybe_map_( fn:(val:I, idx:number)=>O, or?:Or ):(a:readonly I[]|undefined)=>O[]|Or export { map_ as _map, map_ as _fn__map, maybe_map_ as _maybe_map, }