Example #1
0
 public static DGetStrings GetIntegersAsStrings(DGetIntegers input)
 {
     return () => input().Select(i => i.ToString());
 }
Example #2
0
 public static DGetIntegers GetOnePlusEach(DGetIntegers input)
 {
     return () => input().Select(i => i + 1);
 }