quadtree_rs 0.1.3

Point/region Quadtree with support for overlapping regions.
Documentation
# Efficient Region Quadtree

```
+--+--+--+--+--+--+--+--+--+--+       +--+--+--+--+--+--+--+--+--+--+
|  |  |  |  |  |  |  |  |  |  |       |           |                 |
+--+--+--+--+--+--+--+--+--+--+       +     1     +        2        +
|  |  |  |  |  |  |  |  |  |  |       |           |                 |
+--+--+--+--+--+--+--+--+--+--+       +--+--+--+--+--+--+--+--+--+--+
|  |  |  |  |xxxxxxxxxxx|  |  |       |           |xxxxxxxxxxx|     |
+--+--+--+--+xxxxxxxxxxx+--+--+  -->  +           +xxxxxxxxxxx+     +
|  |  |  |  |xxxxxxxxxxx|  |  |       |           |xxxx4.1xxxx| 4.2 |
+--+--+--+--+xxxxxxxxxxx+--+--+       +           +xxxxxxxxxxx+     +
|  |  |  |  |xxxxxxxxxxx|  |  |       |     3     |xxxxxxxxxxx|     |
+--+--+--+--+--+--+--+--+--+--+       +           +--+--+--+--+--+--+
|  |  |  |  |  |  |  |  |  |  |       |           |    4.3    | 4.4 |
+--+--+--+--+--+--+--+--+--+--+       +--+--+--+--+--+--+--+--+--+--+

->

+--+--+--+--+--+--+--+--+--+--+       +--+--+--+--+--+--+--+--+--+--+
|           |                 |       | 1.1 | 1.2 | 2.1 |    2.2    |
+  1  +--+--+--+--+  2        +       +--+--+--+--+--+--+--+--+--+--+
|     |\\\\\\\\\\\|           |       |     |\\\\\|\\\\\|           |
|     |\\\\\\\\\\\|           |       | 1.3 |\1.4\|\2.3\|    2.4    |
|     |\\\\\\\\\\\|           |       |     |\\\\\|\\\\\|           |
+--+--+\\\\\\\\\\\+--+--+--+--+       +--+--+--+--+--+--+--+--+--+--+
|     |\\\\\\\\\\\|/////|     |       |     |\\\\\|XXXXX|/////|     |
|     |\\\\\\\\\\\|/////|     |       | 3.1 |\3.2\|4.1.1|4.1.2|     |
|     |\\\\\\\\\\\|/////|     |       |     |\\\\\|XXXXX|/////|     |
+     +--+--+--+--+/////+ 4.2 +  -->  +--+--+--+--+--+--+--+--+ 4.2 +
|           |////4.1////|     |       |     |     |/////|/////|     |
+           +///////////+     +       +     +     +4.1.3+4.1.4+     +
|     3     |///////////|     |       | 3.3 | 3.4 |/////|/////|     |
+           +--+--+--+--+--+--+       +     +     +--+--+--+--+--+--+
|           |    4.3    | 4.4 |       |     |     |    4.3    | 4.4 |
+--+--+--+--+--+--+--+--+--+--+       +--+--+--+--+--+--+--+--+--+--+
```

# Development notes / notes to myself:
 - Developing a Cargo library
   - Generating docs: `cargo doc --no-deps`
   - Previewing `README.md`: `grip README.md localhost:8000`.
 - Models for API
   - Conform to
     [`std::collections::HashMap`]https://doc.rust-lang.org/std/collections/struct.HashMap.html
     where possible
 - Notes on Quadtree performance
   - It's OK for insert/delete to be relatively expensive if that means query is
     cheap.