doc: updated meta container doc (::reserve)

This commit is contained in:
skypjack
2023-07-15 13:25:35 +02:00
committed by Michele Caini
parent 378d98096d
commit 4b307cb2b2

View File

@@ -385,6 +385,10 @@ to case. In particular:
true in case of success.<br/>
For example, it's not possible to clear fixed size containers.
* The `reserve` member function allows to increase the capacity of the wrapped
container and returns true in case of success.<br/>
For example, it's not possible to increase capacity of fixed size containers.
* The `begin` and `end` member functions return opaque iterators that is used to
iterate the container directly:
@@ -472,6 +476,10 @@ differences in behavior in the case of key-only containers. In particular:
* The `clear` member function allows to clear the wrapped container and returns
true in case of success.
* The `reserve` member function allows to increase the capacity of the wrapped
container and returns true in case of success.<br/>
For example, it's not possible to increase capacity of standard maps.
* The `begin` and `end` member functions return opaque iterators that are used
to iterate the container directly: