Browse Source

Replace bigint.Negate because it doesn't exist in Xamarin

pull/417/head
Frank A. Krueger 10 years ago
parent
commit
ffe7cd71f8
  1. 3
      src/FSharp/BigIntegerExtensions.fs

3
src/FSharp/BigIntegerExtensions.fs

@ -27,8 +27,7 @@ module BigIntegerExtensions =
raise <| FormatException ("The value could not be parsed.")
if str.[0] = '-' then
parseImpl str len 0I 1
|> bigint.Negate
-(parseImpl str len 0I 1)
else
parseImpl str len 0I 0

Loading…
Cancel
Save