import { list } from "./constructors"; import type { LazyList } from "./model"; /* * ------------------------------------------- * Applicative LazyList * ------------------------------------------- */ export const pure: (a: A) => LazyList = list;