Skip to content

Commit 16e3ac0

Browse files
authored
Delete zero element method from writeblock! and readblock! (#153)
I suspect that these are not needed and they should be generic function definitions.
1 parent e9490dc commit 16e3ac0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/diskarray.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ abstract type AbstractDiskArray{T,N} <: AbstractArray{T,N} end
1212
1313
The only function that should be implemented by a `AbstractDiskArray`. This function
1414
"""
15-
function readblock!() end
15+
function readblock! end
1616

1717
"""
1818
writeblock!(A::AbstractDiskArray, A_in, r::AbstractUnitRange...)
1919
2020
Function that should be implemented by a `AbstractDiskArray` if write operations
2121
should be supported as well.
2222
"""
23-
function writeblock!() end
23+
function writeblock! end
2424

2525

2626
function allow_multi_chunk_access(a)

0 commit comments

Comments
 (0)