Skip to content

Commit 7ae23da

Browse files
committed
export main types and aliases
1 parent 4ced4ff commit 7ae23da

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "StaticArraysCore"
22
uuid = "1e83bf80-4336-4d27-bf5d-d5a4f845583c"
3-
version = "1.0.0"
3+
version = "1.0.1"
44

55
[compat]
66
julia = "1.6"

src/StaticArraysCore.jl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,4 +266,8 @@ const SizedVector{S,T} = SizedArray{Tuple{S},T,1,1}
266266

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

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

test/runtests.jl

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
using StaticArraysCore, Test
22

3-
using StaticArraysCore: SArray, SVector, SMatrix
4-
using StaticArraysCore: MArray, MVector, MMatrix
5-
using StaticArraysCore: SizedArray, SizedVector, SizedMatrix
6-
73
@testset "types" begin
84
@test SArray{Tuple{2},Int,1}((1, 2)) isa SArray
95
@test_throws ArgumentError SArray{Tuple{2},Int,2}((1, 2))

0 commit comments

Comments
 (0)