import type { Cons, LazyList, Nil } from "./model"; /* * ------------------------------------------- * Typeguards * ------------------------------------------- */ export const isEmpty = (xs: LazyList): xs is Nil => xs._tag === "Nil"; export const isNonEmpty = (xs: LazyList): xs is Cons => xs._tag === "Cons";