Skip to content

Commit 6d32a69

Browse files
authored
Merge pull request #4 from JuliaArrays/mbaran/exports
Export main types and aliases
2 parents 4ced4ff + a820758 commit 6d32a69

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-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: 3 additions & 0 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

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)