using System; using System.Collections.Immutable; public interface ILens { Hole value { get; } 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 T value, ILens, Whole> lens) => lens.Update(oldHole => value.Cons(oldHole)); 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); } }