Fix: finds the lowest intersecting interval
What's Changed
- fix: finds the lowest intersecting interval by @theSherwood in #47
Fix bug in previous release
Initerate()
, the problem was that if a node was found that was less than and also intersecting with the search node, the algorithm wouldn't search any further left. In the case of an intersecting node, we always want to look further left to find the lowest intersecting node possible.
Full Changelog: v1.1.0...v1.1.1