Thanks for the clarifications, although Erik's points lead me to a follow-up question (two, actually): When you say "everything that follows", does this extend to nested loops? I.e., do I need to write:
@inbounds for i = 1:1000
@inbounds for j = 1:1000
a = x[i,j]
end
end
or just
@inbounds for i = 1:1000
for j = 1:1000
a = x[i,j]
end
end
?
