Skip to content

Commit

Permalink
Merge pull request #23 from putianyi889/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
Vexatos authored Dec 24, 2023
2 parents 1ae9608 + a555c4e commit a81ebe9
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/CircularArrays.jl
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,14 @@ Alias for [`CircularArray{T,1,A}`](@ref).
"""
const CircularVector{T} = CircularArray{T, 1}

"""
CircularMatrix{T,A} <: AbstractMatrix{T}
Two-dimensional array backed by an `AbstractArray{T, 2}` of type `A` with fixed size and circular indexing.
Alias for [`CircularArray{T,2,A}`](@ref).
"""
const CircularMatrix{T} = CircularArray{T, 2}

"""
CircularArray(data)
Expand Down

0 comments on commit a81ebe9

Please sign in to comment.