Beispiel #1
0
 public static ImmutableList <string> AsStrings(this Monad.Utility.ImmutableList <ImmutableList <ParserChar> > self)
 {
     return(self.Select(x => x.AsString()));
 }
Beispiel #2
0
 public static string AsString(this Monad.Utility.ImmutableList <ParserChar> self)
 {
     return(String.Concat(self.Select(pc => pc.Value)));
 }