Skip to content

Commit a820758

Browse files
committed
move exports to top
1 parent 7ae23da commit a820758

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/StaticArraysCore.jl

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
module StaticArraysCore
22

3+
export SArray, SMatrix, SVector
4+
export MArray, MMatrix, MVector
5+
export SizedArray, SizedMatrix, SizedVector
36

47
"""
58
abstract type StaticArray{S, T, N} <: AbstractArray{T, N} end
@@ -266,8 +269,4 @@ const SizedVector{S,T} = SizedArray{Tuple{S},T,1,1}
266269

267270
const SizedMatrix{S1,S2,T} = SizedArray{Tuple{S1,S2},T,2}
268271

269-
export SArray, SMatrix, SVector
270-
export MArray, MMatrix, MVector
271-
export SizedArray, SizedMatrix, SizedVector
272-
273272
end # module

0 commit comments

Comments
 (0)