public static Either <TLeft, ushort> ParseToUshort <TLeft>(
     this Either <TLeft, string> source,
     NumberStyles style,
     TLeft left)
 {
     return(source.FlatMap(x => UshortParser.Parse <TLeft>(x, style, left)));
 }
 public static Either <TLeft, ushort> ParseToUshort <TLeft>(
     this Either <TLeft, string> source,
     IFormatProvider provider,
     TLeft left)
 {
     return(source.FlatMap(x => UshortParser.Parse <TLeft>(x, provider, left)));
 }
 public static Either <TLeft, ushort> ParseToUshort <TLeft>(
     this string source,
     NumberStyles style,
     IFormatProvider provider,
     TLeft left)
 {
     return(UshortParser.Parse <TLeft>(source, style, provider, left));
 }
 public static Maybe <ushort> ParseToUshort(this string source)
 {
     return(UshortParser.Parse(source));
 }
 public static Maybe <ushort> ParseToUshort(this Maybe <string> source, NumberStyles style, IFormatProvider provider)
 {
     return(source.FlatMap(x => UshortParser.Parse(x, style, provider)));
 }
 public static Maybe <ushort> ParseToUshort(this Maybe <string> source, NumberStyles style)
 {
     return(source.FlatMap(x => UshortParser.Parse(x, style)));
 }
 public static Maybe <ushort> ParseToUshort(this string source, NumberStyles style, IFormatProvider provider)
 {
     return(UshortParser.Parse(source, style, provider));
 }
 public static Maybe <ushort> ParseToUshort(this string source, NumberStyles style)
 {
     return(UshortParser.Parse(source, style));
 }
 public static Either <TLeft, ushort> ParseToUshort <TLeft>(this string source, TLeft left)
 {
     return(UshortParser.Parse(source, left));
 }