/* namespace Immutable { using System; using System.Collections; using System.Collections.Generic; public class ListI : IEnumerable { private readonly Option< (T, ListI) > l; public ListI() { this.l = Option.None< (T, ListI) >(); } public ListI(T hd, ListI tl) { this.l = (hd, tl).Some(); } public ListI Add(T x) => new ListI(x, this); public IEnumerator GetEnumerator() => new Enumerator(this); IEnumerator IEnumerable.GetEnumerator() => new Enumerator(this); private class Enumerator : IEnumerator, IEnumerator { private List l; private List next = null; private ListI reset; private T Current_() => l.l.Match<(T, ListI), T>( Some: l => l.Item1, None: (() => throw new Exception("oops")) ); public T Current { get => Current_(); } object IEnumerator.Current { get => Current_(); } public Enumerator(ListI l) { this.l = l; } public bool MoveNext() { if (first) { this.first = false; } else { this.l = l.Item2; } l.l.Match<(T, ListI), bool>( Some: l => true, None: (() => false) ); } public void Dispose() {} public void Reset() { this.l = reset; } } } } */