/** * An `Associative` that always returns the first element. * * @tsplus static Associative/Ops first */ export function first(): Associative { return Associative((x, _) => x) }