We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0625671 commit 2a26899Copy full SHA for 2a26899
base/exports.jl
@@ -440,6 +440,7 @@ export
440
unsigned,
441
widemul,
442
zero,
443
+ √,
444
445
# specfun
446
airy,
base/math.jl
@@ -16,7 +16,7 @@ export sin, cos, tan, sinh, cosh, tanh, asin, acos, atan,
16
besselj0, besselj1, besselj, bessely0, bessely1, bessely,
17
hankelh1, hankelh2, besseli, besselk, besselh,
18
beta, lbeta, eta, zeta, polygamma, invdigamma, digamma, trigamma,
19
- erfinv, erfcinv
+ erfinv, erfcinv, √
20
21
import Base: log, exp, sin, cos, tan, sinh, cosh, tanh, asin,
22
acos, atan, asinh, acosh, atanh, sqrt, log2, log10,
@@ -279,6 +279,7 @@ sqrt(x::Float64) = box(Float64,sqrt_llvm(unbox(Float64,x)))
279
sqrt(x::Float32) = box(Float32,sqrt_llvm(unbox(Float32,x)))
280
sqrt(x::Real) = sqrt(float(x))
281
@vectorize_1arg Number sqrt
282
+const √=sqrt
283
284
for f in (:ceil, :trunc, :significand) # :rint, :nearbyint
285
@eval begin
0 commit comments