Given v = vec![1,2,3,4], why does v[4..] return an empty vector, but v[5..] panics, while both v[4] and v[5] pan
v = vec![1,2,3,4]
v[4..]
v[5..]
v[4]
v[5]