We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7844a6e commit 426f59dCopy full SHA for 426f59d
src/regex.jl
@@ -69,7 +69,7 @@ struct RegexMatchIterator{T<:DenseStringViewAndSub}
69
string::T
70
overlap::Bool
71
end
72
-Base.compile(itr::RegexMatchIterator) = (compile(itr.regex); itr)
+Base.compile(itr::RegexMatchIterator) = (Base.compile(itr.regex); itr)
73
Base.eltype(::Type{RegexMatchIterator{T}}) where {T<:DenseStringView} = SVRegexMatch{T}
74
Base.eltype(::Type{RegexMatchIterator{SubString{T}}}) where {T<:DenseStringView} = SVRegexMatch{T}
75
Base.IteratorSize(::Type{<:RegexMatchIterator}) = Base.SizeUnknown()
0 commit comments