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 4c9ad10 commit b7e5eabCopy full SHA for b7e5eab
src/LaTeXStrings.jl
@@ -61,6 +61,7 @@ Compat.firstindex(s::LaTeXString) = Compat.firstindex(s.s)
61
Compat.lastindex(s::LaTeXString) = Compat.lastindex(s.s)
62
@static if isdefined(Base, :iterate)
63
Base.iterate(s::LaTeXString, i::Int) = iterate(s.s, i)
64
+ Base.iterate(s::LaTeXString) = iterate(s.s)
65
else
66
Base.start(s::LaTeXString) = start(s.s)
67
Base.next(s::LaTeXString, i) = next(s.s, i)
0 commit comments