Skip to content

StaticArrays v0.2.0

Compare
Choose a tag to compare
@andyferris andyferris released this 13 Feb 05:00
· 1025 commits to master since this release

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.