Table of contents
fst (function)
Signature
export function fst<A>(a: A): A { ... }
snd (function)
Signature
export function snd<A, B>(_: A, b: B): B { ... }
tuple2 (function)
Signature
export function tuple2<A, B>(a: A, b: B): readonly [A, B] { ... }