import { Mapper } from '../Mapper' /** * @see `mapOver` */ export const fill = (fns: Mapper[]) => (input: In) => fns.map(fn => fn(input))