StaticArrays 0.5.0
This is a julia-0.6- only release.
This is a breaking release because the type parameters to StaticArray
, StaticVector
, StaticMatrix
, SArray
and MArray
changed (though not SVector
, SMatrix
, MVector
, or MMatrix
) - you will need to update your code if you name any of these types explicitly.
Breaking changes
-
Unify types so that
SVector
andSMatrix
are aliases for 1D and 2D
SArray
. To make this work, the SArray size parameter must now be passed
as a Tuple type rather than tuple instance (#127). -
Add size information to the base
StaticArray
type and type aliases, so
that, for example,StaticMatrix{2,2,T}
can be used for directly
dispatching on 2x2 matrices, without messing with the Size trait (#134)
Feature additions and fixes
- Fixes for additional fancy linear indexing (#128)
- Return
SVector
from some mixed static/abstract array operations (#131, #140) - Bring back StaticArrays.FixedSizeArrays for julia-0.6 (#138)