Skip to content

Commit 9058120

Browse files
authored
Merge pull request #33 from fredrikekre/fe/offsetvector
add OffsetVector constructors, and export OffsetVector
2 parents 0d65ee3 + c593958 commit 9058120

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

src/OffsetArrays.jl

+6-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module OffsetArrays
55
using Base: Indices, tail
66
using Compat
77

8-
export OffsetArray, @unsafe
8+
export OffsetArray, OffsetVector, @unsafe
99

1010
# TODO: just use .+
1111
# See https://github.com/JuliaLang/julia/pull/22932#issuecomment-330711997
@@ -34,6 +34,11 @@ OffsetArray{T}(inds::Vararg{AbstractUnitRange,N}) where {T,N} = OffsetArray{T,N}
3434
OffsetArray(A::AbstractArray{T,0}) where {T} = OffsetArray{T,0,typeof(A)}(A, ())
3535
OffsetArray(::Type{T}, inds::Vararg{UnitRange{Int},N}) where {T,N} = OffsetArray{T,N}(inds)
3636

37+
# OffsetVector constructors
38+
OffsetVector(A::AbstractVector, offset) = OffsetArray(A, offset)
39+
OffsetVector(::Type{T}, inds::AbstractUnitRange) where {T} = OffsetArray{T,1}(inds)
40+
OffsetVector{T}(inds::AbstractUnitRange) where {T} = OffsetArray{T}(inds)
41+
3742
# The next two are necessary for ambiguity resolution. Really, the
3843
# second method should not be necessary.
3944
OffsetArray(A::AbstractArray{T,0}, inds::Tuple{}) where {T} = OffsetArray{T,0,typeof(A)}(A, ())

test/runtests.jl

+8
Original file line numberDiff line numberDiff line change
@@ -359,3 +359,11 @@ if VERSION >= v"0.7.0-DEV.1790"
359359
@test summary(a) == "OffsetArray(::Array{$(Int),2}, -1:0, 5:6) with eltype $(Int) with indices -1:0×5:6"
360360
@test summary(view(a, :, 5)) == "view(OffsetArray(::Array{Int64,2}, -1:0, 5:6), :, 5) with eltype Int64 with indices -1:0"
361361
end
362+
363+
@testset "OffsetVector constructors" begin
364+
v = rand(5)
365+
@test OffsetVector(v, -2) == OffsetArray(v, -2)
366+
@test OffsetVector(v, -2:2) == OffsetArray(v, -2:2)
367+
@test typeof(OffsetVector(Float64, -2:2)) == typeof(OffsetArray(Float64, -2:2))
368+
@test typeof(OffsetVector{Float64}(-2:2)) == typeof(OffsetArray{Float64}(-2:2))
369+
end

0 commit comments

Comments
 (0)