using System; using System.Linq; using System.Collections.Generic; public static class Collection { public static void ForEach(this IEnumerable x, Action f) => x.ToList().ForEach(f); /* public static ListI> Add(this ListI> l, T x, U y) => l.Add(Tuple.Create(x,y)); */ // System.Collections.Immutable requires NuGet and is not available on repl.it public static List Cons(this List l, T x) { l.Add(x); return l; } // Circumvent bug with collection initializers, tuples and // first-class functions by using repeated .Add() // See https://repl.it/@suzannesoy/WarlikeWorstTraining#main.cs public static List> Cons(this List> l, T x, U y) => l.Cons(Tuple.Create(x,y)); public static List> Cons(this List> l, T x, U y, V z) => l.Cons(Tuple.Create(x,y,z)); public static void Deconstruct(this Tuple t, out A a, out B b) { a = t.Item1; b = t.Item2; } }