view(A, inds…)
Like getindex, but returns a view into the parent array A with the given indices instead of making a copy. Calling getindex or setindex! on the returned SubArray computes the indices to the parent array on the fly without checking bounds.
That warning could probably be worded a bit better. I believe it was originally written with the meaning that @cstjean first understood, but it’s ambiguous since there are two places where bounds checks can occur. Prior to 0.5, SubArrays themselves didn’t check bounds on indexing, but the parent array would still check bounds on the computed access.
In 0.5, that has now flipped. Views now check bounds upon indexing to ensure that accesses are within their size, but then they access the parent array with bounds checks turned off.