Exemplo n.º 1
0
 public static AggregateListNode <T> NodeAt <T>(this AggregateListNode <T> start, Numeral index) =>
 ChurchAggregateList <T> .NodeAt(start)(index);
Exemplo n.º 2
0
 public static T Value <T>(this AggregateListNode <T> node) => ChurchAggregateList <T> .Value(node);
Exemplo n.º 3
0
 public static AggregateListNode <T> Next <T>(this AggregateListNode <T> node) =>
 ChurchAggregateList <T> .Next(node);
Exemplo n.º 4
0
 public static Boolean IsNull <T>(this AggregateListNode <T> node) => ChurchAggregateList <T> .IsNull(node);