Skip to content

Commit

Permalink
Don't mention "AbstractSparseMatrixCSC interface" in the docs.
Browse files Browse the repository at this point in the history
Just describe which methods are expected to be implemented.
  • Loading branch information
j-fu committed Dec 5, 2024
1 parent 3469864 commit a602de5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/abstractsparse.jl
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ const AbstractSparseVecOrMat = Union{AbstractSparseVector,AbstractSparseMatrix}
"""
AbstractSparseMatrixCSC{Tv,Ti<:Integer} <: AbstractSparseMatrix{Tv,Ti}
Supertype for matrix with compressed sparse column (CSC).
Subtypes of this type are expected to follow the `AbstractSparseMatrixCSC` interface
consisting of [`nnz`](@ref), [`rowvals`](@ref), [`nzrange`](@ref), [`nonzeros`](@ref) and [`getcolptr`](@ref).
Supertype for sparse matrix with elements of type `Tv` and index type `Ti`
in compressed sparse column (CSC) format. Subtypes of this type are expected to implement
[`nnz`](@ref), [`rowvals`](@ref), [`nzrange`](@ref), [`nonzeros`](@ref) and [`getcolptr`](@ref).
"""
abstract type AbstractSparseMatrixCSC{Tv,Ti<:Integer} <: AbstractSparseMatrix{Tv,Ti} end

Expand Down

0 comments on commit a602de5

Please sign in to comment.