You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Changed a bunch of iterations from `for i in 1:length(vec)` to `for i in eachindex(vec)`. I substituted a loop with a list comprehension because it seemed faster and clearer to read. I correct some spelling typos in comments in the code. I replaced comparisons of the type `a == nothing` with `isnothing(a)`.
0 commit comments