Cons<A> constructor

Cons<A>(
  1. A _head,
  2. IList<A> _tail
)

Implementation

Cons(this._head, this._tail);