Ejemplo n.º 1
0
 // IsNull = node => node(value => _ => False)(True)
 public static Boolean IsNull <T>(this AggregateListNodeWrapper <T> node) =>
 node.Invoke <Boolean>(value => _ => False)(True);
Ejemplo n.º 2
0
 public AggregateListNodeWrapper(T value, AggregateListNodeWrapper <T> next)
 {
     this.value = value;
     this.next  = next;
 }