Skip to content

Commit f4beadc

Browse files
committed
Initial commit
1 parent e845204 commit f4beadc

17 files changed

+467
-431
lines changed

.github/workflows/CI.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,15 @@ concurrency:
1212
group: ${{ github.workflow }}-${{ github.ref }}
1313
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
1414
jobs:
15+
format:
16+
name: Format
17+
runs-on: ubuntu-latest
18+
steps:
19+
- uses: actions/checkout@v5
20+
- uses: julia-actions/setup-julia@v2
21+
with:
22+
version: '1.11'
23+
- run: julia --project=format format/format.jl
1524
test:
1625
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
1726
runs-on: ${{ matrix.os }}

src/MultidimensionalSparseArrays.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ module MultidimensionalSparseArrays
33
include("sparse_array.jl")
44

55
export SparseArray, nnz, sparsity, stored_indices, stored_values, stored_pairs,
6-
spzeros, spones, spfill, findnz, dropstored!, compress!
6+
spzeros, spones, spfill, findnz, dropstored!, compress!, hasindex, to_dense
77

88
end

0 commit comments

Comments
 (0)