Skip to content

Commit

Permalink
Small improvements to README
Browse files Browse the repository at this point in the history
  • Loading branch information
seppestas committed Apr 26, 2015
1 parent 840e9ce commit f1839d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ Based on:
- [go-stree](https://github.com/toberndo/go-stree) by @toberndo
- Chapter 10.3 of [Computational Geometry: Algorithms and Applications](http://www.cs.uu.nl/geobook/) rev. 3 by Mark de Berg, Otfried Cheong, Marc van Kreveld and Mark Overmars (ISBN [978-3-540-77973-5](http://link.springer.com/book/10.1007%2F978-3-540-77974-2))

The elements are sent to a channel as soon as they are found in the tree. This allows efficient querying of e.g multi-dimensional trees (trees containing trees). The elements are not sent in any specific order, however each found element will only be sent once.
The elements are sent on a channel as soon as they are found in the tree. This allows efficient querying of e.g multi-dimensional trees (trees containing trees). The elements are not sent in any specific order, however each found element will only be sent once.

# Example usages:
## Example usages:

```go
tree := new(segtree.Tree)
Expand Down

0 comments on commit f1839d0

Please sign in to comment.