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