예제 #1
0
 public static Seq <A> Cons <A>(this A head) =>
 SeqCons <A> .New(head, SeqEmpty <A> .Default);
예제 #2
0
 public static Seq <A> Cons <A>(this A head, Seq <A> tail) =>
 SeqCons <A> .New(head, tail);
예제 #3
0
 public static Seq <A> Cons <A>(this A head, Arr <A> tail) =>
 SeqCons <A> .New(head, SeqArr <A> .New(tail));