-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
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
RFC: Remove special functions from Base #20427
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -312,19 +312,11 @@ export | |
csc, | ||
cscd, | ||
csch, | ||
dawson, | ||
deg2rad, | ||
denominator, | ||
digamma, | ||
div, | ||
divrem, | ||
eps, | ||
erf, | ||
erfc, | ||
erfcinv, | ||
erfcx, | ||
erfi, | ||
erfinv, | ||
exp, | ||
exp10, | ||
exp2, | ||
|
@@ -348,7 +340,6 @@ export | |
hypot, | ||
imag, | ||
inv, | ||
invdigamma, | ||
invmod, | ||
isapprox, | ||
iseven, | ||
|
@@ -419,7 +410,6 @@ export | |
tanh, | ||
trailing_ones, | ||
trailing_zeros, | ||
trigamma, | ||
trunc, | ||
unsafe_trunc, | ||
typemax, | ||
|
@@ -433,37 +423,8 @@ export | |
≉, | ||
|
||
# specfun | ||
airyai, | ||
airyaiprime, | ||
airybi, | ||
airybiprime, | ||
airyaix, | ||
airyaiprimex, | ||
airybix, | ||
airybiprimex, | ||
besselh, | ||
besselhx, | ||
besseli, | ||
besselix, | ||
besselj, | ||
besselj0, | ||
besselj1, | ||
besseljx, | ||
besselk, | ||
besselkx, | ||
bessely, | ||
bessely0, | ||
bessely1, | ||
besselyx, | ||
beta, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should we move There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I thought about that, but those are simple extensions of |
||
eta, | ||
hankelh1, | ||
hankelh1x, | ||
hankelh2, | ||
hankelh2x, | ||
lbeta, | ||
polygamma, | ||
zeta, | ||
|
||
# arrays | ||
broadcast!, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
does the package defined deprecated vectorized versions of these?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, didn't seem necessary but I can add them to the package if you think that'd be best.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we haven't had a release with them deprecated, it's only been on master, so I would do that for the sake of anyone upgrading