Ejemplo n.º 1
0
 public static Maybe <ulong> ParseToUlong(this string source, IFormatProvider provider)
 {
     return(UlongParser.Parse(source, provider));
 }
Ejemplo n.º 2
0
 public static Either <TLeft, ulong> ParseToUlong <TLeft>(this Either <TLeft, string> source, TLeft left)
 {
     return(source
            .FlatMap(x => UlongParser.Parse(x, left)));
 }
Ejemplo n.º 3
0
 public static Either <TLeft, ulong> ParseToUlong <TLeft>(this string source, TLeft left)
 {
     return(UlongParser.Parse(source, left));
 }
Ejemplo n.º 4
0
 public static Either <TLeft, ulong> ParseToUlong <TLeft>(this string source, IFormatProvider provider, TLeft left)
 {
     return(UlongParser.Parse(source, provider, left));
 }