From 9b027a034c5963756ffc57f9e4703410ecbff598 Mon Sep 17 00:00:00 2001 From: Tim Holy Date: Tue, 26 Apr 2016 20:47:44 -0500 Subject: [PATCH] Fixes from renaming --- src/{ArrayIterationPlayground.jl => ArrayIteration.jl} | 2 +- test/array_types.jl | 2 +- test/runtests.jl | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) rename src/{ArrayIterationPlayground.jl => ArrayIteration.jl} (92%) 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