File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
- # Note: Functions surrounded by a comment blocks are there because `Vararg` is sitll allocating.
2
- # When Vararg is fast enough, they can simply be removed
1
+ # Note: Functions surrounded by a comment blocks are there because `Vararg` is still allocating.
2
+ # When Vararg is fast enough, they can simply be removed.
3
3
4
4
# #############
5
5
# BlockArray #
8
8
"""
9
9
BlockArray{T, N, R} <: AbstractBlockArray{T, N}
10
10
11
- A `BlockArray` is an array where each block is stored contiguously. This means that insertions and retrival of blocks
11
+ A `BlockArray` is an array where each block is stored contiguously. This means that insertions and retrieval of blocks
12
12
can be very fast since no copying of data is needed.
13
13
14
14
In the type definition, `R` defines the array type that each block has, for example `Matrix{Float64}.
@@ -226,4 +226,4 @@ function Base.fill!(block_array::BlockArray, v)
226
226
for block in block_array. blocks
227
227
fill! (block, v)
228
228
end
229
- end
229
+ end
You can’t perform that action at this time.
0 commit comments