You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When dealing with arrays, the generated code assumes one-based indexing which is fine for most cases, but to support packages like OffsetArrays, we should switch to firstindex(a) / lastindex(a) instead of 1 and length(a) etc.
The text was updated successfully, but these errors were encountered:
From JuliaServices/Rematch2.jl#4 (comment)
When dealing with arrays, the generated code assumes one-based indexing which is fine for most cases, but to support packages like
OffsetArrays
, we should switch tofirstindex(a)
/lastindex(a)
instead of1
andlength(a)
etc.The text was updated successfully, but these errors were encountered: