We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fec1e4b commit 8a9bc06Copy full SHA for 8a9bc06
src/BlockArraysExtensions/blockedunitrange.jl
@@ -135,7 +135,7 @@ end
135
136
# TODO: Move this to a `BlockArraysExtensions` library.
137
function blockedunitrange_getindices(
138
- a::AbstractBlockedUnitRange, indices::Vector{<:Integer}
+ a::AbstractBlockedUnitRange, indices::AbstractVector{<:Integer}
139
)
140
return map(index -> a[index], indices)
141
end
@@ -171,7 +171,7 @@ function blockedunitrange_getindices(
171
172
173
174
- a::AbstractBlockedUnitRange, indices::AbstractArray{Bool}
+ a::AbstractBlockedUnitRange, indices::AbstractVector{Bool}
175
176
blocked_indices = BlockedVector(indices, axes(a))
177
return mortar(
0 commit comments