Skip to content

Commit 4ee1599

Browse files
authored
Support halve(eachindex(string)) (#64)
1 parent e19ef4b commit 4ee1599

File tree

3 files changed

+73
-0
lines changed

3 files changed

+73
-0
lines changed

src/implementations.jl

+38
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,30 @@ safelength(xs) =
6464

6565
amount(xs) = length(xs)
6666
amount(xs::AbstractString) = lastindex(xs) - firstindex(xs) + 1
67+
amount(xs::Base.EachStringIndex) = amount(xs.s)
68+
69+
struct WithOffset{Iter,Offset}
70+
iter::Iter
71+
offset::Offset
72+
end
73+
74+
withoffset(iter, offset) = WithOffset(iter, offset)
75+
withoffset(iter::WithOffset, offset) = WithOffset(iter.iter, iter.offset + offset)
76+
77+
_shift(wo, ::Nothing) = nothing
78+
_shift(wo, (i, s)) = (convert(eltype(wo), wo.offset + i), s)
79+
Base.iterate(wo::WithOffset) = _shift(wo, iterate(wo.iter))
80+
Base.iterate(wo::WithOffset, s) = _shift(wo, iterate(wo.iter, s))
81+
82+
Base.IteratorEltype(::Type{<:WithOffset{Iter}}) where {Iter} =
83+
Base.IteratorEltype(Iter)
84+
Base.IteratorSize(::Type{<:WithOffset{Iter}}) where {Iter} =
85+
Base.IteratorSize(Iter)
86+
Base.eltype(::Type{WithOffset{Iter,Offset}}) where {Iter,Offset} =
87+
promote_type(eltype(Iter), Offset)
88+
Base.length(wo::WithOffset) = length(wo.iter)
89+
Base.size(wo::WithOffset) = size(wo.iter)
90+
amount(wo::WithOffset) = amount(wo.offset)
6791

6892
function halve(xs::AbstractVector)
6993
mid = length(xs) ÷ 2
@@ -172,6 +196,20 @@ function halve(xs::AbstractString)
172196
return (left, right)
173197
end
174198

199+
function halve(xs::Base.EachStringIndex)
200+
offset = firstindex(xs.s) - 1
201+
mid = thisind(xs.s, (lastindex(xs.s) - offset) ÷ 2 + offset)
202+
mid2 = nextind(xs.s, mid)
203+
left = eachindex(SubString(xs.s, firstindex(xs.s):mid))
204+
right = withoffset(eachindex(SubString(xs.s, mid2:lastindex(xs.s))), mid2 - 1)
205+
return (left, right)
206+
end
207+
208+
function halve(xs::WithOffset{<:Base.EachStringIndex})
209+
left, right = halve(xs.iter)
210+
return withoffset(left, xs.offset), withoffset(right, xs.offset)
211+
end
212+
175213
@generated function halve(xs::NTuple{N,Any}) where {N}
176214
m = N ÷ 2
177215
quote

test/test_halve.jl

+8
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,14 @@ pairs(adjoint(reshape(1:6, 2, 3)))
3333
"あいうえおか"
3434
"aいυe𝒐"
3535
"aいυe𝒐か"
36+
eachindex("abcde")
37+
eachindex("abcdef")
38+
eachindex("αβγδϵ")
39+
eachindex("αβγδϵζ")
40+
eachindex("あいうえお")
41+
eachindex("あいうえおか")
42+
eachindex("aいυe𝒐")
43+
eachindex("aいυe𝒐か")
3644
(1, 2, 3, 4, 5)
3745
(1, 2, 3, 4, 5, 6)
3846
(a=1, b=2, c=3, d=4, e=5)

test/test_withoffset.jl

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
module TestWithOffset
2+
3+
using Base: HasEltype, HasLength, HasShape, IteratorEltype, IteratorSize
4+
using SplittablesBase.Implementations: WithOffset
5+
using Test
6+
7+
@testset "eltype" begin
8+
@test IteratorEltype(WithOffset(1:2, 0)) isa HasEltype
9+
@test eltype(WithOffset(1:2, Int128(0))) === Int128
10+
end
11+
12+
@testset "size" begin
13+
xs = eachindex("abc")
14+
@test IteratorSize(WithOffset(xs, 1)) isa HasLength
15+
@test length(WithOffset(xs, 1)) == 3
16+
@test collect(WithOffset(xs, 1)) == xs .+ 1
17+
end
18+
19+
@testset "size" begin
20+
xs = reshape(1:6, 2, 3)
21+
@test IteratorSize(WithOffset(xs, 0)) isa HasShape
22+
@test size(WithOffset(xs, 1)) == (2, 3)
23+
@test length(WithOffset(xs, 1)) == 6
24+
@test collect(WithOffset(xs, 1)) == xs .+ 1
25+
end
26+
27+
end # module

0 commit comments

Comments
 (0)