Skip to content

Commit

Permalink
move exports to top
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuszbaran committed Jun 27, 2022
1 parent 7ae23da commit a820758
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/StaticArraysCore.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
module StaticArraysCore

export SArray, SMatrix, SVector
export MArray, MMatrix, MVector
export SizedArray, SizedMatrix, SizedVector

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

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

export SArray, SMatrix, SVector
export MArray, MMatrix, MVector
export SizedArray, SizedMatrix, SizedVector

end # module

0 comments on commit a820758

Please sign in to comment.