diff --git a/doc/html/geometry_index/introduction.html b/doc/html/geometry_index/introduction.html index aea9c9dc7..dd8b1efc4 100644 --- a/doc/html/geometry_index/introduction.html +++ b/doc/html/geometry_index/introduction.html @@ -3,7 +3,7 @@
rtree<Value, Parameters, Translator, Allocator>-
Value - type of object which will be stored in the container.
std::pair<...>,
pointer, iterator or smart pointer.
-Indexable = Point
| Box
diff --git a/doc/html/geometry_index/r_tree/exception_safety.html b/doc/html/geometry_index/r_tree/exception_safety.html
index 0f98c1133..c0ec24646 100644
--- a/doc/html/geometry_index/r_tree/exception_safety.html
+++ b/doc/html/geometry_index/r_tree/exception_safety.html
@@ -3,7 +3,7 @@
In order to be exception-safe the R-tree requires:
-CoordinateType
used in the Indexable,
@@ -63,7 +63,8 @@
- nothrow + nothrow (default) or strong + [a]
rtree(rtree const&)
@@ -117,6 +124,12 @@
rtree(rtree &&)
@@ -124,7 +137,8 @@
- nothrow + nothrow (default) or strong + [b]
insert(Value)
@@ -192,6 +212,12 @@
spatial_query(...)
@@ -216,6 +242,12 @@
size()
@@ -275,10 +307,51 @@
+ parameters()
+
+ nothrow +
+
+ translator()
+
+ nothrow +
+[a] - nothrow - if allocators are equal, strong - if allocators aren't equal -
[a]
+ nothrow - if Translator
+ has nonthrowing copy constructor (default), strong
+ - if Translator
+ has throwing copy constructor
+
[b]
+ nothrow - if Translator
+ has nonthrowing copy constructor (default), strong
+ - if Translator
+ has throwing copy constructor
+
[c]
+ nothrow - if allocators are equal and Translator has nonthrowing
+ copy constructor (default), strong
+ - if allocators aren't equal or Translator
+ has throwing copy constructor
+
Last revised: November 14, 2012 at 23:30:31 GMT |
+Last revised: November 16, 2012 at 12:39:01 GMT |