コード例 #1
0
 public static TType Set <TType, TValue>(
     this TType instance, Lens <TType, TValue> lens, TValue value)
 => lens.Set(value)(instance);
コード例 #2
0
 public static TValue Get <TType, TValue>(
     this TType instance, Lens <TType, TValue> lens)
 => lens.Get(instance);