// Code quality of this file: low. using System; using System.Collections.Immutable; public interface ILens { Whole Update(Func update); } public static class LensExtensionMethods { public static Whole Update(this ILens lens, Hole newHole) => lens.Update(oldHole => newHole); public static Whole Cons(this ILens, Whole> lens, T value) => lens.Update(oldHole => oldHole.Cons(value)); public static ImmutableListLens ChainLens( this ImmutableList hole, System.Func, Whole> wrap) => new ImmutableListLens(wrap: wrap, oldHole: hole); public static ILens ChainLens(this string hole, System.Func wrap) => new LeafLens(wrap: wrap, oldHole: hole); public static ILens, Whole> ChainLens(this Func hole, System.Func, Whole> wrap) => new LeafLens, Whole>(wrap: wrap, oldHole: hole); public class FocusableLeaf { private readonly T value; public FocusableLeaf(T value) { this.value = value; } public LeafLens ChainLens(Func wrap) => new LeafLens(wrap: wrap, oldHole: value); } }