The following is a minimal version of some code I wrote using v0.4
using GeometryBasics
points = Point{2,Float64}.([rand(2) for i=1:10])
linestring = LineString(points)
intersectingLine = Line(Point{2,Float64}(0,0),Point{2,Float64}(1,1))
intersections = [intersects(line, intersectingLine) for line in linestring]
Unfortunately if I now update GeometryBasics to v0.5.7 I get the following error for the same code:
 ERROR: MethodError: no method matching iterate(::LineString{2, Float64})
Is there an alternative method to achieve a similar effect in the updated version?