Skip to content

Commit 2e259a1

Browse files
Update vector_of_array.jl
1 parent 1a8ebac commit 2e259a1

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/vector_of_array.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ end
7575

7676
# Need this for ODE_DEFAULT_UNSTABLE_CHECK from DiffEqBase to work properly
7777
@inline Base.any(f, VA::AbstractVectorOfArray) = any(any(f,VA[i]) for i in eachindex(VA))
78+
@inline Base.all(f, VA::AbstractVectorOfArray) = all(all(f,VA[i]) for i in eachindex(VA))
7879

7980
# conversion tools
8081
@deprecate vecarr_to_arr(VA::AbstractVectorOfArray) convert(Array,VA)

0 commit comments

Comments
 (0)