diff --git a/base/abstractarray.jl b/base/abstractarray.jl index 15778821a84ab..b605cdcb7f183 100644 --- a/base/abstractarray.jl +++ b/base/abstractarray.jl @@ -529,7 +529,7 @@ similar(a::AbstractArray, ::Type{T}, dims::Dims{N}) where {T,N} = Array{T,N}( to_shape(::Tuple{}) = () to_shape(dims::Dims) = dims -to_shape(dims::DimsOrInds) = map(to_shape, dims) +to_shape(dims::DimsOrInds) = map(to_shape, dims)::DimsOrInds # each dimension to_shape(i::Int) = i to_shape(i::Integer) = Int(i) diff --git a/base/array.jl b/base/array.jl index 8a002399ec862..4a49a373aaacb 100644 --- a/base/array.jl +++ b/base/array.jl @@ -645,7 +645,7 @@ else end _array_for(::Type{T}, itr, ::HasLength) where {T} = Array{T,1}(Int(length(itr)::Integer)) -_array_for(::Type{T}, itr, ::HasShape) where {T} = similar(Array{T}, indices(itr)) +_array_for(::Type{T}, itr, ::HasShape) where {T} = similar(Array{T}, indices(itr))::Array{T} function collect(itr::Generator) isz = iteratorsize(itr.iter) diff --git a/base/cartesian.jl b/base/cartesian.jl index b944617726345..77af57775ea85 100644 --- a/base/cartesian.jl +++ b/base/cartesian.jl @@ -81,12 +81,8 @@ julia> @macroexpand Base.Cartesian.@nref 3 A i :(A[i_1, i_2, i_3]) ``` """ -macro nref(N, A, sym) - _nref(N, A, sym) -end - -function _nref(N::Int, A::Symbol, ex) - vars = [ inlineanonymous(ex,i) for i = 1:N ] +macro nref(N::Int, A::Symbol, ex) + vars = Any[ inlineanonymous(ex,i) for i = 1:N ] Expr(:escape, Expr(:ref, A, vars...)) end @@ -105,14 +101,10 @@ while `@ncall 2 func a b i->c[i]` yields func(a, b, c[1], c[2]) """ -macro ncall(N, f, sym...) - _ncall(N, f, sym...) -end - -function _ncall(N::Int, f, args...) +macro ncall(N::Int, f, args...) pre = args[1:end-1] ex = args[end] - vars = [ inlineanonymous(ex,i) for i = 1:N ] + vars = Any[ inlineanonymous(ex,i) for i = 1:N ] Expr(:escape, Expr(:call, f, pre..., vars...)) end @@ -132,12 +124,8 @@ quote end ``` """ -macro nexprs(N, ex) - _nexprs(N, ex) -end - -function _nexprs(N::Int, ex::Expr) - exs = [ inlineanonymous(ex,i) for i = 1:N ] +macro nexprs(N::Int, ex::Expr) + exs = Any[ inlineanonymous(ex,i) for i = 1:N ] Expr(:escape, Expr(:block, exs...)) end @@ -159,17 +147,13 @@ while `@nextract 3 x d->y[2d-1]` yields x_3 = y[5] """ -macro nextract(N, esym, isym) - _nextract(N, esym, isym) -end - -function _nextract(N::Int, esym::Symbol, isym::Symbol) - aexprs = [Expr(:escape, Expr(:(=), inlineanonymous(esym, i), :(($isym)[$i]))) for i = 1:N] +macro nextract(N::Int, esym::Symbol, isym::Symbol) + aexprs = Any[ Expr(:escape, Expr(:(=), inlineanonymous(esym, i), :(($isym)[$i]))) for i = 1:N ] Expr(:block, aexprs...) end -function _nextract(N::Int, esym::Symbol, ex::Expr) - aexprs = [Expr(:escape, Expr(:(=), inlineanonymous(esym, i), inlineanonymous(ex,i))) for i = 1:N] +macro nextract(N::Int, esym::Symbol, ex::Expr) + aexprs = Any[ Expr(:escape, Expr(:(=), inlineanonymous(esym, i), inlineanonymous(ex,i))) for i = 1:N ] Expr(:block, aexprs...) end @@ -182,15 +166,11 @@ evaluate to `true`. `@nall 3 d->(i_d > 1)` would generate the expression `(i_1 > 1 && i_2 > 1 && i_3 > 1)`. This can be convenient for bounds-checking. """ -macro nall(N, criterion) - _nall(N, criterion) -end - -function _nall(N::Int, criterion::Expr) +macro nall(N::Int, criterion::Expr) if criterion.head != :-> throw(ArgumentError("second argument must be an anonymous function expression yielding the criterion")) end - conds = [Expr(:escape, inlineanonymous(criterion, i)) for i = 1:N] + conds = Any[ Expr(:escape, inlineanonymous(criterion, i)) for i = 1:N ] Expr(:&&, conds...) end @@ -202,15 +182,11 @@ evaluate to `true`. `@nany 3 d->(i_d > 1)` would generate the expression `(i_1 > 1 || i_2 > 1 || i_3 > 1)`. """ -macro nany(N, criterion) - _nany(N, criterion) -end - -function _nany(N::Int, criterion::Expr) +macro nany(N::Int, criterion::Expr) if criterion.head != :-> error("Second argument must be an anonymous function expression yielding the criterion") end - conds = [Expr(:escape, inlineanonymous(criterion, i)) for i = 1:N] + conds = Any[ Expr(:escape, inlineanonymous(criterion, i)) for i = 1:N ] Expr(:||, conds...) end @@ -220,12 +196,8 @@ end Generates an `N`-tuple. `@ntuple 2 i` would generate `(i_1, i_2)`, and `@ntuple 2 k->k+1` would generate `(2,3)`. """ -macro ntuple(N, ex) - _ntuple(N, ex) -end - -function _ntuple(N::Int, ex) - vars = [ inlineanonymous(ex,i) for i = 1:N ] +macro ntuple(N::Int, ex) + vars = Any[ inlineanonymous(ex,i) for i = 1:N ] Expr(:escape, Expr(:tuple, vars...)) end diff --git a/base/precompile.jl b/base/precompile.jl index 9f51297b22a48..2ccd832138828 100644 --- a/base/precompile.jl +++ b/base/precompile.jl @@ -818,7 +818,6 @@ precompile(Tuple{typeof(Base.length), Tuple{DataType, DataType}}) precompile(Tuple{Type{BoundsError}, Array{Int64, 2}, Tuple{Base.UnitRange{Int64}, Int64}}) precompile(Tuple{typeof(Base.throw_boundserror), Array{Int64, 2}, Tuple{Base.UnitRange{Int64}, Int64}}) precompile(Tuple{getfield(Base.Cartesian, Symbol("#@nexprs")), Int64, Expr}) -precompile(Tuple{typeof(Base.Cartesian._nexprs), Int64, Expr}) precompile(Tuple{typeof(Core.Inference.builtin_tfunction), typeof(===), Array{Any, 1}, Core.Inference.InferenceState, Core.Inference.InferenceParams}) precompile(Tuple{typeof(Core.Inference.typeinf_frame), Core.MethodInstance, Bool, Bool, Core.Inference.InferenceParams}) precompile(Tuple{typeof(Core.Inference.typeinf), Core.Inference.InferenceState}) @@ -837,14 +836,11 @@ precompile(Tuple{typeof(Base.Cartesian.lreplace!), String, Base.Cartesian.LRepla precompile(Tuple{typeof(Base.Cartesian.exprresolve), Expr}) precompile(Tuple{Type{BoundsError}, Array{Expr, 1}, Base.UnitRange{Int64}}) precompile(Tuple{getfield(Base.Cartesian, Symbol("#@ncall")), Int64, Symbol, Symbol}) -precompile(Tuple{typeof(Base.Cartesian._ncall), Int64, Symbol, Symbol}) precompile(Tuple{typeof(Base.getindex), Tuple{Symbol}, Base.UnitRange{Int64}}) precompile(Tuple{getfield(Base.Cartesian, Symbol("#@ncall")), Int64, Symbol, Symbol, Expr}) -precompile(Tuple{typeof(Base.Cartesian._ncall), Int64, Symbol, Symbol, Expr}) precompile(Tuple{typeof(Base.endof), Tuple{Symbol, Expr}}) precompile(Tuple{typeof(Base.getindex), Tuple{Symbol, Expr}, Base.UnitRange{Int64}}) precompile(Tuple{getfield(Base.Cartesian, Symbol("#@nloops")), Int64, Symbol, Expr, Expr}) -precompile(Tuple{typeof(Base.Cartesian._nloops), Int64, Symbol, Expr, Expr}) precompile(Tuple{typeof(Base.endof), Tuple{Expr}}) precompile(Tuple{typeof(Base.endof), Tuple{Symbol, Symbol, Symbol}}) precompile(Tuple{typeof(Base.getindex), Tuple{Symbol, Symbol, Symbol}, Base.UnitRange{Int64}})