We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A recent change JuliaLang/julia/pull/10955 deprecates BigFloat("0.1") in favor of parse(BigFloat,"0.1").
BigFloat("0.1")
parse(BigFloat,"0.1")
Is the following useful?
if VERSION < v"0.4.0-dev+4539" Base.parse(::BigFloat, s::AbstractString) = BigFloat(s) end
The text was updated successfully, but these errors were encountered:
Implements macro for Base.parse(::BigFloat, s::AbstractString) JuliaL…
d220b6a
…ang#74
Merge pull request #76 from lbenet/lbenet/parse_bigfloat
d013435
Implements macro for Base.parse(::BigFloat, s::AbstractString) #74
Implemented in #76
Sorry, something went wrong.
No branches or pull requests
A recent change JuliaLang/julia/pull/10955 deprecates
BigFloat("0.1")
in favor ofparse(BigFloat,"0.1")
.Is the following useful?
The text was updated successfully, but these errors were encountered: