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 470b533 commit b0a75c7Copy full SHA for b0a75c7
src/RobustPmap.jl
@@ -38,7 +38,7 @@ import FileIO
38
39
"Check for type exceptions"
40
function checkexceptions(x::Any, t::Type=Any)
41
- for i = 1:length(x)
+ for i in eachindex(x)
42
if isa(x[i], Exception)
43
throw(x[i])
44
elseif !isa(x[i], t) # typeof(x[i]) != t
0 commit comments