Beispiel #1
0
 public static AggregateListNode <T> ListNodeAt <T>(this AggregateListNode <T> start, Numeral index) =>
 ChurchAggregateList <T> .ListNodeAt(start)(index);
Beispiel #2
0
 public static T Value <T>(this AggregateListNode <T> node) => ChurchAggregateList <T> .Value(node);
Beispiel #3
0
 public static AggregateListNode <T> Next <T>(this AggregateListNode <T> node) =>
 ChurchAggregateList <T> .Next(node);
Beispiel #4
0
 public static Boolean IsNull <T>(this AggregateListNode <T> node) => ChurchAggregateList <T> .IsNull(node);