-
Notifications
You must be signed in to change notification settings - Fork 7
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
List of deprecations to implement #20
Comments
Merged
From
Simple renames ... as well as the case for all other
|
Closed
+1 for auto-fixing a positional dimensions argument! |
ismatch -> contains can be checked off this list |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Will keep adding to this:
Ptr{Void} -> Ptr{Cvoid}
Void
->Nothing
unshift!
->pushfirst!
,shift!
->popfirst!
CartesianRange
->CartesianIndices
sub2ind
->CartesianIndices
,ind2sub
->LinearIndices
JULIA_HOME
->Sys.BINDIR
ipermute!
->invpermute!
spones(A)
->fillstored!(copy(A), 1)
info, warn
to macro versions (might be a bit tricky).Display
->AbstractDisplay
linspace(a, b)
->linspace(a, b, 50)
,logspace(a, b)
->logspace(a, b, 50)
.(x...)
->(x...,)
strwidth
,charwidth
->textwidth
Array{T, N}(m::Int, ...::Int)
->Array{T, N}(uninitialized, m, ...)
logm
->log
,expm
->exp
,sqrtm
->sqrt
union()
->Set()
.A_mul_B!
->mul!
and coisleaftype
->isconcretetype
killisleaftype
JuliaLang/julia#25496isabstract
->isabstracttype
killisleaftype
JuliaLang/julia#25496doc" "
->@doc doc""
iteratorsize
->IteratorSize
digits
keyword argument toround
.parse
->Meta.parse
prod
,sum
needs to takedims
keywordlinspace
torange
with keyword argumentseval
-> Core.evalatan2
->atan
Compat.@__MODULE__
->@__MODULE__
parse(Int, s, b)
->parse(Int, s, base=b)
.is_unix
->Sys.isunix
Some of these might be unsafe to do without semantic analysis. Look into using https://github.com/ZacLN/StaticLint.jl and see how well it can be used to figure out where the binding originate from.
The text was updated successfully, but these errors were encountered: