* First attempt at documenting the RectangleTree.
* Add Insert() and Delete() to RectangleTree; they have a nicer user interface than what was previously there.
* Add R-tree documentation.
* Fix default arguments for RectangleTree typedefs.
* Fix some minor documentation display issues.
* Fix link.
* Fix links.
* Try to clarify what trees are a little bit.
* Apply suggestions from code review
Co-authored-by: Dirk Eddelbuettel <edd@debian.org>
* Update doc/user/core/trees/r_tree.md
Co-authored-by: Dirk Eddelbuettel <edd@debian.org>
---------
Co-authored-by: Dirk Eddelbuettel <edd@debian.org>
With newer standards the readability of template heavy code can
be improved a lot by using a form with trailing _t for ::type and
_v for ::value respectively. Especially for ::type it also makes
the additional typename before the trait dispensable.
This PR combines multiple commits that modernize the traits,
starting with what clang-tidy could achieve while analyzing test files
and continuing by regex replaces with few manual corrections.
While it does not guarantee that all current occurrences are modernized,
it moves the codebase considerably into the modern direction. Note that
also before this PR both notations were used, so missing a few should
be acceptable.