StaticArrays v0.2.0
Removes a long-time bad behaviour (type piracy) from the indexing code, whereby any array could be indexed with a tuple (to return an SVector
).
This is a breaking change for anyone who is doing anything like [11,12,13][(2,3)]
to create SVector(12,13)
. Use [11,12,13][SVector(2,3)]
instead.