Package: effect
Module: List
Represents an immutable linked list of elements of type A.
A List is optimal for last-in-first-out (LIFO), stack-like access patterns.
If you need another access pattern, for example, random access or FIFO,
consider using a collection more suited for that other than List.
Signature
type List<A> = Cons<A> | Nil<A>
Since v2.0.0