@@ -64,6 +64,30 @@ safelength(xs) =
64
64
65
65
amount (xs) = length (xs)
66
66
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)
67
91
68
92
function halve (xs:: AbstractVector )
69
93
mid = length (xs) ÷ 2
@@ -172,6 +196,20 @@ function halve(xs::AbstractString)
172
196
return (left, right)
173
197
end
174
198
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
+
175
213
@generated function halve (xs:: NTuple{N,Any} ) where {N}
176
214
m = N ÷ 2
177
215
quote
0 commit comments