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
begin was introduced in #33946, but it would be nice if @view had a rewriting like replace_ref_end! for begin, too.
Currently
julia>VERSIONv"1.5.0-DEV.461"
julia> v =1:41:4
julia> v[(begin+1):(end-1)]
2:3
julia>@view v[(begin+1):(end-1)]
ERROR: UndefVarError:begin not defined
Stacktrace:
[1] top-level scope at REPL[4]:1
The text was updated successfully, but these errors were encountered:
begin
was introduced in #33946, but it would be nice if@view
had a rewriting likereplace_ref_end!
forbegin
, too.Currently
The text was updated successfully, but these errors were encountered: