File tree Expand file tree Collapse file tree 3 files changed +26
-1
lines changed Expand file tree Collapse file tree 3 files changed +26
-1
lines changed Original file line number Diff line number Diff line change 11name = " SparseArraysBase"
22uuid = " 0d5efcca-f356-4864-8770-e1ed8d78f208"
33authors = [" ITensor developers <support@itensor.org> and contributors" ]
4- version = " 0.2.5 "
4+ version = " 0.2.6 "
55
66[deps ]
77Accessors = " 7d9f7c33-5ae7-4f3b-8dc6-eff91059b697"
Original file line number Diff line number Diff line change 11module SparseArraysBase
22
3+ export SparseArrayDOK,
4+ SparseMatrixDOK,
5+ SparseVectorDOK,
6+ eachstoredindex,
7+ isstored,
8+ storedlength,
9+ storedpairs,
10+ storedvalues
11+
312include (" abstractsparsearrayinterface.jl" )
413include (" sparsearrayinterface.jl" )
514include (" wrappers.jl" )
Original file line number Diff line number Diff line change 1+ using SparseArraysBase: SparseArraysBase
2+ using Test: @test , @testset
3+ @testset " Test exports" begin
4+ exports = [
5+ :SparseArraysBase ,
6+ :SparseArrayDOK ,
7+ :SparseMatrixDOK ,
8+ :SparseVectorDOK ,
9+ :eachstoredindex ,
10+ :isstored ,
11+ :storedlength ,
12+ :storedpairs ,
13+ :storedvalues ,
14+ ]
15+ @test issetequal (names (SparseArraysBase), exports)
16+ end
You can’t perform that action at this time.
0 commit comments