JuliaGeometry / VoronoiDelaunay.jl

Fast and robust Voronoi & Delaunay tessellation creation with Julia
Other
124 stars 26 forks source link

adopting to the new iterator interface #43

Closed dkarrasch closed 6 years ago

dkarrasch commented 6 years ago

Upon testing VoronoiDelaunay.jl in Julia v1.0, I get a warning that start, next and done cannot be imported from Base. That is correct, since the iterator interface has changed from Julia v0.6 to Julia v0.7 (strangely enough, this has not been deprecated in Julia v0.7; there are no warnings there!). The old iterator interface is abandoned now in Julia v1.0, so I'm confused tests pass anyway, maybe because this iteration is not tested after all? Anyway, I'll leave a link to some explanations, in case anyone feels comfortable of doing it quickly: Writing Iterators in Julia 0.7.