Example: ```julia julia> sv = SVector(1,2,3); julia> circshift(sv, 1) 3-element MArray{Tuple{3},Int64,1,3} with indices SOneTo(3): 3 1 2 ``` I think the result should be `SArray`.