mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
8b88ccd559
Approved by: jrm (mentor) Differential Revision: https://reviews.freebsd.org/D15105
7 lines
306 B
Plaintext
7 lines
306 B
Plaintext
An interval tree can be used to efficiently find a set of numeric intervals
|
|
overlapping or containing another interval. This library provides a basic
|
|
implementation of an interval tree using C++ templates, allowing the insertion
|
|
of arbitrary types into the tree.
|
|
|
|
WWW: https://github.com/ekg/intervaltree
|