diff --git a/src/ArrayIterationPlayground.jl b/src/ArrayIteration.jl similarity index 92% rename from src/ArrayIterationPlayground.jl rename to src/ArrayIteration.jl index 1a6766f..0ca7e9d 100644 --- a/src/ArrayIterationPlayground.jl +++ b/src/ArrayIteration.jl @@ -1,4 +1,4 @@ -module ArrayIterationPlayground +module ArrayIteration import Base: getindex, setindex!, start, next, done, length, eachindex, show, parent, isless using Base: ReshapedArray, ReshapedIndex, linearindexing, LinearFast, LinearSlow, LinearIndexing diff --git a/test/array_types.jl b/test/array_types.jl index 4774263..8951226 100644 --- a/test/array_types.jl +++ b/test/array_types.jl @@ -4,7 +4,7 @@ module ATs # OffsetArrays using Base: ReshapedArray, ReshapedArrayIterator using Base.PermutedDimsArrays: PermutedDimsArray -import ArrayIterationPlayground: inds +import ArrayIteration: inds immutable OA{T,N,AA<:AbstractArray} <: AbstractArray{T,N} parent::AA diff --git a/test/runtests.jl b/test/runtests.jl index 43d08bb..9e1d377 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,8 +1,8 @@ -using ArrayIterationPlayground +using ArrayIteration using Base.Test using Base.PermutedDimsArrays: PermutedDimsArray -const AIP = ArrayIterationPlayground +const AIP = ArrayIteration const CCI = AIP.ContigCartIterator include("array_types.jl") # just for testing