using System; using System.Collections.Immutable; // Lenses for primitive types and other types that are not // interesting to further focus. public sealed class LeafLens : ILens { public readonly System.Func wrap; public readonly T oldHole; public LeafLens(System.Func wrap, T oldHole) { this.wrap = wrap; this.oldHole = oldHole; } public Whole Update(Func update) => wrap(update(oldHole)); }