1[/
2 / Copyright (c) 2009-2020 Ion Gazta�aga
3 /
4 / Distributed under the Boost Software License, Version 1.0. (See accompanying
5 / file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 /]
7
8[library Boost.Container
9    [quickbook 1.5]
10    [authors [Gaztanaga, Ion]]
11    [copyright 2009-2018 Ion Gaztanaga]
12    [id container]
13    [dirname container]
14    [purpose Containers library]
15    [license
16        Distributed under the Boost Software License, Version 1.0.
17        (See accompanying file LICENSE_1_0.txt or copy at
18        [@http://www.boost.org/LICENSE_1_0.txt])
19    ]
20]
21
22[template super[x]'''<superscript>'''[x]'''</superscript>''']
23[template sub[x]'''<subscript>'''[x]'''</subscript>''']
24
25[section:intro Introduction]
26
27[*Boost.Container] library implements several well-known containers, including
28STL containers. The aim of the library is to offer advanced features not present
29in standard containers or to offer the latest standard draft features for compilers
30that don't comply with the latest C++ standard.
31
32In short, what does [*Boost.Container] offer?
33
34* Emplacement and move semantics are implemented, including emulation for pre-C++11 compilers.
35* Polymorphic allocators and memory resources, including implementation and emulation for pre-C++17 compilers
36* New advanced features (e.g. recursive containers) and configurability options [link container.configurable_containers] for containers.
37* Containers support stateful allocators and are compatible with [*Boost.Interprocess]
38  (they can be safely placed in shared memory).
39* Users obtain a more uniform performance across all plataforms,
40  including [link container.main_features.scary_iterators SCARY iterators].
41* The library offers new useful containers:
42  * [classref boost::container::flat_map flat_map],
43    [classref boost::container::flat_set flat_set],
44    [classref boost::container::flat_multimap flat_multimap] and
45    [classref boost::container::flat_multiset flat_multiset]: drop-in
46    replacements for standard associative containers but more memory friendly and with faster
47    searches.
48  * [classref boost::container::stable_vector stable_vector]: a std::list and std::vector hybrid
49    container: vector-like random-access iterators and list-like iterator stability in insertions and erasures.
50  * [classref boost::container::static_vector static_vector]: a vector-like container that internally embeds
51    (statically allocates) all needed memory up to the maximum capacity. Maximum capacity can't be increased and
52    it's specified at compile time.
53  * [classref boost::container::small_vector small_vector]: a vector-like container that internally embeds
54    (statically allocates) a minimum amount of memory, but dynamically allocates elements when capacity
55    has to be increased. This minimum capacity is specified at compile time.
56  * [classref boost::container::devector devector]: is a hybrid of the standard vector and deque containers.
57    It offers cheap (amortized constant time) insertion at both the front and back ends.
58  * [classref boost::container::slist slist]: the classic pre-standard singly linked list implementation
59    offering constant-time `size()`. Note that C++11 `forward_list` has no `size()`.
60
61[section:introduction_building_container Building Boost.Container]
62
63There is no need to compile [*Boost.Container], since it's a header-only library,
64just include your Boost header directory in your compiler include path *except if you use*:
65
66*  [link container.extended_allocators Extended Allocators]
67*  Some [link container.cpp_conformance.polymorphic_memory_resources Polymorphic Memory Resources] classes.
68
69Those exceptions are are implemented as a separately compiled library, so in those cases you must install binaries
70in a location that can be found by your linker.
71If you followed the [@http://www.boost.org/doc/libs/release/more/getting_started/index.html Boost Getting Started]
72instructions, that's already been done for you.
73
74[endsect]
75
76[section:tested_compilers Tested compilers]
77
78[*Boost.Container] requires a decent C++03 compatibility. Some compilers known to work are:
79
80*  Visual C++ >= 10.0
81*  GCC >= 4.8
82
83[endsect]
84
85[endsect]
86
87[section:main_features Main features]
88
89[section:move_emplace Efficient insertion]
90
91Move semantics and placement insertion are two features brought by C++11 containers
92that can have a very positive impact in your C++ applications. Boost.Container implements
93both techniques both for C++11 and C++03 compilers.
94
95[section:move_containers Move-aware containers]
96
97All containers offered by [*Boost.Container] can store movable-only types
98and actual requirements for `value_type` depend on each container operations.
99Following C++11 requirements even for C++03 compilers, many operations now require
100movable or default constructible types instead of just copy constructible types.
101
102Containers themselves are also movable, with no-throw guarantee if allocator
103or predicate (if present) copy operations are no-throw. This allows
104high performance operations when transferring data between vectors.
105Let's see an example:
106
107[import ../example/doc_move_containers.cpp]
108[doc_move_containers]
109
110[endsect]
111
112[section:emplace Emplace: Placement insertion]
113
114All containers offered by [*Boost.Container] implement placement insertion,
115which means that  objects can be built directly into the container from user arguments
116without creating any temporary object. For compilers without variadic templates support
117placement insertion is emulated up to a finite (10) number of arguments.
118
119Expensive to move types are perfect candidates emplace functions and in case of node containers
120([classref boost::container::list list], [classref boost::container::set set], ...)
121emplace allows storing non-movable and non-copyable types in containers! Let's
122see an example:
123
124[import ../example/doc_emplace.cpp]
125[doc_emplace]
126
127[endsect]
128
129[endsect]
130
131
132[section:containers_of_incomplete_types Containers of Incomplete Types]
133
134Incomplete types allow
135[@http://en.wikipedia.org/wiki/Type_erasure [*type erasure ]] and
136[@http://en.wikipedia.org/wiki/Recursive_data_type [*recursive data types]], and
137C and C++ programmers have been using it for years to build complex data structures, like
138tree structures where a node may have an arbitrary number of children.
139
140What about standard containers? Containers of incomplete types have been under discussion for a long time,
141as explained in Matt Austern's great article ([@http://drdobbs.com/184403814 [*The Standard Librarian: Containers of Incomplete Types]]):
142
143["['Unlike most of my columns, this one is about something you can't do with the C++ Standard library:
144put incomplete types in one of the standard containers. This column explains why you might want to
145do this, why the standardization committee banned it even though they knew it was useful, and what
146you might be able to do to get around the restriction.]]
147
148["['In 1997, shortly before the C++ Standard was completed, the standardization committee received a
149query: Is it possible to create standard containers with incomplete types? It took a while for the
150committee to understand the question. What would such a thing even mean, and why on earth would you
151ever want to do it? The committee eventually worked it out and came up with an answer to the question.
152(Just so you don't have to skip ahead to the end, the answer is "no.") But the question is much more
153interesting than the answer: it points to a useful, and insufficiently discussed, programming technique.
154The standard library doesn't directly support that technique, but the two can be made to coexist.]]
155
156["['In a future revision of C++, it might make sense to relax the restriction on instantiating
157standard library templates with incomplete types. Clearly, the general prohibition should stay
158in place - instantiating templates with incomplete types is a delicate business, and there are
159too many classes in the standard library where it would make no sense. But perhaps it should be
160relaxed on a case-by-case basis, and `vector` looks like a good candidate for such special-case
161treatment: it's the one standard container class where there are good reasons to instantiate
162it with an incomplete type and where Standard Library implementors want to make it work. As of
163today, in fact, implementors would have to go out of their way to prohibit it!]]
164
165C++11 standard is also cautious about incomplete types and STL: ["['17.6.4.8 Other functions (...) 2.
166the effects are undefined in the following cases: (...) In particular - if an incomplete type (3.9)
167is used as a template argument when instantiating a template component,
168unless specifically allowed for that component]].
169
170Finally C++17 added support for incomplete types in `std::vector`, `std::list` and `std::forward_list`
171(see [@https://wg21.link/n4510 ['N4510: Minimal incomplete type support for standard containers, revision 4]]
172for details), but no other containers like `std::set/map/unordered_set/unordered_map`,
173
174Fortunately all [*Boost.Container] containers except
175[classref boost::container::static_vector static_vector] and
176[classref boost::container::small_vector small_vector] and
177[classref boost::container::basic_string basic_string] are designed to support incomplete types.
178[classref boost::container::static_vector static_vector] and
179[classref boost::container::small_vector small_vector] are special because
180they statically allocates memory for `value_type` and this requires complete types.
181[classref boost::container::basic_string basic_string] implements Small String Optimization which
182also requires complete types.
183
184[*Boost.Container] containers supporting incomplete types also support instantiating iterators to
185those incomplete elements.
186
187[section:recursive_containers Recursive containers]
188
189Most [*Boost.Container] containers can be used to define recursive containers:
190
191[import ../example/doc_recursive_containers.cpp]
192[doc_recursive_containers]
193
194[endsect]
195
196[section:type_erasure Type Erasure]
197
198Containers of incomplete types are useful to break header file dependencies and improve
199compilation types. With Boost.Container, you can write a header file defining a class
200with containers of incomplete types as data members, if you carefully put all the
201implementation details that require knowing the size of the `value_type` in your
202implementation file:
203
204[import ../example/doc_type_erasure.cpp]
205
206In this header file we define a class (`MyClassHolder)` that holds a `vector` of an
207incomplete type (`MyClass`) that it's only forward declared.
208
209[doc_type_erasure_MyClassHolder_h]
210
211Then we can define `MyClass` in its own header file.
212
213[doc_type_erasure_MyClass_h]
214
215And include it only in the implementation file of `MyClassHolder`
216
217[doc_type_erasure_MyClassHolder_cpp]
218
219Finally, we can just compile, link, and run!
220
221[doc_type_erasure_main_cpp]
222
223[endsect]
224
225[endsect]
226
227[section:scary_iterators SCARY iterators]
228
229The paper N2913, titled [@http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2009/n2913.pdf
230SCARY Iterator Assignment and Initialization], proposed a requirement that a standard container's
231iterator types have no dependency on any type argument apart from the container's `value_type`,
232`difference_type`, `pointer type`, and `const_pointer` type. In particular, according to the proposal,
233the types of a standard container's iterators should not depend on the container's `key_compare`,
234`hasher`, `key_equal`, or `allocator` types.
235
236That paper demonstrated that SCARY operations were crucial to the performant implementation of common
237design patterns using STL components. It showed that implementations that support SCARY operations reduce
238object code bloat by eliminating redundant specializations of iterator and algorithm templates.
239
240[*Boost.Container] containers implement SCARY iterators so the iterator type of a container is only dependent
241on the `allocator_traits<allocator_type>::pointer` type (the pointer type of the `value_type` to be inserted
242in the container). Reference types and all other typedefs are deduced from the pointer type using the
243C++11 `pointer_traits` utility. This leads to lower code bloat in algorithms and classes templated on
244iterators.
245
246[endsect]
247
248[section:other_features Other features]
249
250* Default constructors don't allocate memory which improves performance and
251  usually implies a no-throw guarantee (if predicate's or allocator's default constructor doesn't throw).
252
253* Small string optimization for [classref boost::container::basic_string basic_string],
254  with an internal buffer of 11/23 bytes (32/64 bit systems)
255  [*without] increasing the usual `sizeof` of the string (3 words).
256
257* `[multi]set/map` containers are size optimized embedding the color bit of the red-black tree nodes
258   in the parent pointer.
259
260* `[multi]set/map` containers use no recursive functions so stack problems are avoided.
261
262[endsect]
263
264[endsect]
265
266[section:exception_handling Boost.Container and C++ exceptions]
267
268In some environments, such as game development or embedded systems, C++ exceptions are disabled or a customized error handling is needed.
269According to document [@http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2271.html N2271 EASTL -- Electronic Arts Standard Template Library]
270exceptions can be disabled for several reasons:
271
272*  ["['Exception handling incurs some kind of cost in all compiler implementations, including those that avoid
273   the cost during normal execution. However, in some cases this cost may arguably offset the cost of the code that it is replacing.]]
274*  ["['Exception handling is often agreed to be a superior solution for handling a large range of function return values. However,
275   avoiding the creation of functions that need large ranges of return values is superior to using exception handling to handle such values.]]
276*  ["['Using exception handling correctly can be difficult in the case of complex software.]]
277*  ["['The execution of throw and catch can be significantly expensive with some implementations.]]
278*  ["['Exception handling violates the don't-pay-for-what-you-don't-use design of C++, as it incurs overhead in any non-leaf function that
279   has destructible stack objects regardless of whether they use exception handling.]]
280*  ["['The approach that game software usually takes is to avoid the need for exception handling where possible; avoid the possibility
281   of circumstances that may lead to exceptions. For example, verify up front that there is enough memory for a subsystem to do its job
282   instead of trying to deal with the problem via exception handling or any other means after it occurs.]]
283*  ["['However, some game libraries may nevertheless benefit from the use of exception handling. It's best, however,
284   if such libraries keep the exception handling internal lest they force their usage of exception handling on the rest of the application.]]
285
286In order to support environments without C++ exception support or environments with special error handling needs,
287[*Boost.Container] changes error signalling behaviour when `BOOST_CONTAINER_USER_DEFINED_THROW_CALLBACKS` or `BOOST_NO_EXCEPTIONS`
288is defined. The former shall be defined by the user and the latter can be either defined by the user or implicitly defined by [*Boost.Confg]
289when the compiler has been invoked with the appropriate flag (like `-fno-exceptions` in GCC).
290
291When dealing with user-defined classes, (e.g. when constructing user-defined classes):
292
293*  If `BOOST_NO_EXCEPTIONS` is defined, the library avoids using `try`/`catch`/`throw` statements. The class writer must handle and
294   propagate error situations internally as no error will be propagated through [*Boost.Container].
295*  If `BOOST_NO_EXCEPTIONS` is *not* defined, the library propagates exceptions offering the exception guarantees detailed in the documentation.
296
297When the library needs to throw an exception (such as `out_of_range` when an incorrect index is used in `vector::at`), the library calls
298a throw-callback declared in [headerref boost/container/throw_exception.hpp]:
299
300*  If `BOOST_CONTAINER_USER_DEFINED_THROW_CALLBACKS` is defined, then the programmer must provide its own definition for all
301   `throw_xxx` functions. Those functions can't return, they must throw an exception or call `std::exit` or `std::abort`.
302*  Else if `BOOST_NO_EXCEPTIONS` is defined, a `BOOST_ASSERT_MSG` assertion is triggered
303   (see [@http://www.boost.org/libs/utility/assert.html Boost.Assert] for more information).
304   If this assertion returns, then `std::abort` is called.
305*  Else, an appropriate standard library exception is thrown (like `std::out_of_range`).
306
307[endsect]
308
309[section:non_standard_containers Non-standard containers]
310
311[section:stable_vector ['stable_vector]]
312
313This useful, fully STL-compliant stable container [@http://bannalia.blogspot.com/2008/09/introducing-stablevector.html designed by Joaqu\u00EDn M. L\u00F3pez Mu\u00F1oz]
314is an hybrid between `vector` and `list`, providing most of
315the features of `vector` except [@http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html#69 element contiguity].
316
317Extremely convenient as they are, `vector`s have a limitation that many novice C++ programmers frequently stumble upon:
318iterators and references to an element of an `vector` are invalidated when a preceding element is erased or when the
319vector expands and needs to migrate its internal storage to a wider memory region (i.e. when the required size exceeds
320the vector's capacity). We say then that `vector`s are unstable: by contrast, stable containers are those for which
321references and iterators to a given element remain valid as long as the element is not erased: examples of stable containers
322within the C++ standard library are `list` and the standard associative containers (`set`, `map`, etc.).
323
324Sometimes stability is too precious a feature to live without, but one particular property of `vector`s, element contiguity,
325makes it impossible to add stability to this container. So, provided we sacrifice element contiguity, how much
326can a stable design approach the behavior of `vector` (random access iterators, amortized constant time end
327insertion/deletion, minimal memory overhead, etc.)?
328The following image describes the layout of a possible data structure upon which to base the design of a stable vector:
329
330[$../../libs/container/doc/images/stable_vector.png  [width 50%] [align center] ]
331
332Each element is stored in its own separate node. All the nodes are referenced from a contiguous array of pointers, but
333also every node contains an "up" pointer referring back to the associated array cell. This up pointer is the key element
334to implementing stability and random accessibility:
335
336Iterators point to the nodes rather than to the pointer array. This ensures stability, as it is only the pointer array
337that needs to be shifted or relocated upon insertion or deletion. Random access operations can be implemented by using
338the pointer array as a convenient intermediate zone. For instance, if the iterator it holds a node pointer `it.p` and we
339want to advance it by n positions, we simply do:
340
341[c++]
342
343   it.p = *(it.p->up+n);
344
345That is, we go "up" to the pointer array, add n there and then go "down" to the resulting node.
346
347[*General properties]. `stable_vector` satisfies all the requirements of a container, a reversible container and a sequence
348and provides all the optional operations present in vector. Like vector, iterators are random access. `stable_vector`
349does not provide element contiguity; in exchange for this absence, the container is stable, i.e. references and iterators
350to an element of a `stable_vector` remain valid as long as the element is not erased, and an iterator that has been
351assigned the return value of end() always remain valid until the destruction of the associated `stable_vector`.
352
353[*Operation complexity]. The big-O complexities of `stable_vector` operations match exactly those of vector. In general,
354insertion/deletion is constant time at the end of the sequence and linear elsewhere. Unlike vector, `stable_vector`
355does not internally perform any value_type destruction, copy/move construction/assignment operations other than those exactly
356corresponding to the insertion of new elements or deletion of stored elements, which can sometimes compensate in terms of
357performance for the extra burden of doing more pointer manipulation and an additional allocation per element.
358
359[*Exception safety]. (according to [@http://www.boost.org/community/exception_safety.html Abrahams' terminology])
360As `stable_vector` does not internally copy/move elements around, some
361operations provide stronger exception safety guarantees than in vector:
362
363[table:stable_vector_req Exception safety
364    [[operation] [exception safety for `vector<T>`] [exception safety for `stable_vector<T>`]]
365    [[insert]    [strong unless copy/move construction/assignment of `T` throw (basic)]     [strong]]
366    [[erase]     [no-throw unless copy/move construction/assignment  of `T` throw (basic)]     [no-throw]]
367]
368
369[*Memory overhead]. The C++ standard does not specify requirements on memory consumption, but virtually any implementation
370of `vector` has the same behavior with respect to memory usage: the memory allocated by a `vector` v with n elements of type T
371is
372
373m[sub v] = c\u2219e,
374
375where c is `v.capacity()` and e is `sizeof(T)`. c can be as low as n if the user has explicitly reserved the exact capacity
376required; otherwise, the average value c for a growing `vector` oscillates between 1.25\u2219n and 1.5\u2219n for typical resizing
377policies. For `stable_vector`, the memory usage is
378
379m[sub sv] = (c + 1)p + (n + 1)(e + p),
380
381where p is the size of a pointer. We have c + 1 and n + 1 rather than c and n because a dummy node is needed at the end of
382the sequence. If we call f the capacity to size ratio c/n and assume that n is large enough, we have that
383
384m[sub sv]/m[sub v] \u2243 (fp + e + p)/fe.
385
386So, `stable_vector` uses less memory than `vector` only when e > p and the capacity to size ratio exceeds a given threshold:
387
388m[sub sv] < m[sub v] <-> f > (e + p)/(e - p). (provided e > p)
389
390This threshold approaches typical values of f below 1.5 when e > 5p; in a 32-bit architecture, when e > 20 bytes.
391
392[*Summary]. `stable_vector` is a drop-in replacement for `vector` providing stability of references and iterators, in exchange
393for missing element contiguity and also some performance and memory overhead. When the element objects are expensive to
394move around, the performance overhead can turn into a net performance gain for `stable_vector` if many middle insertions
395or deletions are performed or if resizing is very frequent. Similarly, if the elements are large there are situations when
396the memory used by `stable_vector` can actually be less than required by vector.
397
398['Note: Text and explanations taken from [@http://bannalia.blogspot.com/2008/09/introducing-stablevector.html Joaqu\u00EDn's blog]]
399
400[endsect]
401
402[section:flat_xxx ['flat_(multi)map/set] associative containers]
403
404Using sorted vectors instead of tree-based associative containers is a well-known technique in
405C++ world. Matt Austern's  classic article
406[@http://lafstern.org/matt/col1.pdf Why You Shouldn't Use set, and What You Should Use Instead]
407(C++ Report 12:4, April 2000) was enlightening:
408
409["['Red-black trees aren't the only way to organize data that permits lookup in logarithmic time.  One of the basic
410algorithms of computer science is binary search, which works by successively dividing a range in half. Binary
411search is log N and it doesn't require any fancy data structures, just a sorted collection of elements.
412(...) You can use whatever data structure is convenient, so long as it provides STL iterator;
413usually it's easiest to use a C array, or a vector.]]
414
415["['Both std::lower_bound and set::find take time proportional to log N, but the constants of proportionality
416are very different.  Using g++ (...) it takes X seconds to perform a million lookups in a
417sorted vector<double> of a million elements, and almost twice as long (...) using a set. Moreover,
418the set uses almost three times as much memory (48 million bytes) as the vector (16.8 million).]]
419
420["['Using a sorted vector instead of a set gives you faster lookup and much faster iteration,
421but at the cost of slower insertion.  Insertion into a set, using set::insert, is proportional
422to log N, but insertion into a sorted vector, (...)
423, is proportional to N. Whenever you insert something into a vector,
424vector::insert has to make room by shifting all of the elements that follow it.  On average, if you're equally
425likely to insert a new element anywhere, you'll be shifting N/2 elements.]]
426
427["['It may sometimes be convenient to bundle all of this together into a small container adaptor.
428This class does not satisfy the requirements of a Standard Associative Container, since the complexity of insert is
429O(N) rather than O(log N), but otherwise it is almost a drop-in replacement for set.]]
430
431Following Matt Austern's indications, Andrei Alexandrescu's
432[@http://www.bestwebbuys.com/Modern-C-Design-Generic-Programming-and-Design-Patterns-Applied-ISBN-9780201704310?isrc=-rd Modern C++ Design]
433showed `AssocVector`, a `std::map` drop-in
434replacement designed in his [@http://loki-lib.sourceforge.net/ Loki] library:
435
436["['It seems as if we're better off with a sorted vector. The disadvantages of a sorted
437vector are linear-time insertions and linear-time deletions (...). In exchange, a vector
438offers about twice the lookup speed and a much smaller working set (...).
439Loki saves the trouble of maintaining a sorted vector by hand by defining an AssocVector class
440template. AssocVector is a drop-in replacement for std::map (it supports the same set of member
441functions), implemented on top of std::vector. AssocVector differs from a map in the behavior of
442its erase functions (AssocVector::erase invalidates all iterators into the object) and in the
443complexity guarantees of insert and erase (linear as opposed to constant). ]]
444
445[*Boost.Container] `flat_[multi]map/set` containers are ordered, vector-like container based, associative
446containers following  Austern's and Alexandrescu's guidelines. These ordered vector containers have also
447benefited with the addition of `move semantics` to C++11, speeding up insertion and
448erasure times considerably. Flat associative containers have the following attributes:
449
450* Faster lookup than standard associative containers
451* Much faster iteration than standard associative containers.
452   Random-access iterators instead of bidirectional iterators.
453* Less memory consumption for small objects (and for big objects if `shrink_to_fit` is used)
454* Improved cache performance (data is stored in contiguous memory)
455* Non-stable iterators (iterators are invalidated when inserting and erasing elements)
456* Non-copyable and non-movable values types can't be stored
457* Weaker exception safety than standard associative containers
458(copy/move constructors can throw when shifting values in erasures and insertions)
459* Slower insertion and erasure than standard associative containers (specially for non-movable types)
460
461[endsect]
462
463[section:devector ['devector]]
464
465`devector` is a hybrid of the standard vector and deque containers originally written by Thaler Benedek.
466It offers cheap (amortized constant time) insertion at both the front and back ends,
467while also providing the regular features of `vector`, in particular the contiguous underlying memory.
468
469Unlike `vector`, devector can have free capacity both before and after the elements. This enables efficient
470implementation of methods that modify the devector at the front. In general, `devector`'s available methods
471are a superset of those of `vector` with identical behaviour, barring a couple of iterator invalidation
472guarantees that differ.
473
474The overhead for devector is one extra `size_t` per container: Usually sizeof(devector) == 4*sizeof(T*).
475
476[endsect]
477
478[section:slist ['slist]]
479
480When the standard template library was designed, it contained a singly linked list called `slist`.
481Unfortunately, this container was not standardized and remained as an extension for many standard
482library implementations until C++11 introduced `forward_list`, which is a bit different from the
483the original SGI `slist`. According to [@http://www.sgi.com/tech/stl/Slist.html SGI STL documentation]:
484
485["['An `slist` is a singly linked list: a list where each element is linked to the next element, but
486not to the previous element. That is, it is a Sequence that supports forward but not backward traversal,
487and (amortized) constant time insertion and removal of elements. Slists, like lists, have the important
488property that insertion and splicing do not invalidate iterators to list elements, and that even removal
489invalidates only the iterators that point to the elements that are removed. The ordering of iterators
490may be changed (that is, slist<T>::iterator might have a different predecessor or successor after a list
491operation than it did before), but the iterators themselves will not be invalidated or made to point to
492different elements unless that invalidation or mutation is explicit.]]
493
494["['The main difference between `slist` and list is that list's iterators are bidirectional iterators,
495while slist's iterators are forward iterators. This means that `slist` is less versatile than list;
496frequently, however, bidirectional iterators are unnecessary. You should usually use `slist` unless
497you actually need the extra functionality of list, because singly linked lists are smaller and faster
498than double linked lists.]]
499
500["['Important performance note: like every other Sequence, `slist` defines the member functions insert and erase.
501Using these member functions carelessly, however, can result in disastrously slow programs. The problem is that
502insert's first argument is an iterator pos, and that it inserts the new element(s) before pos. This means that
503insert must find the iterator just before pos; this is a constant-time operation for list, since list has
504bidirectional iterators, but for `slist` it must find that iterator by traversing the list from the beginning
505up to pos. In other words: insert and erase are slow operations anywhere but near the beginning of the slist.]]
506
507["['Slist provides the member functions insert_after and erase_after, which are constant time operations: you should
508always use insert_after and erase_after whenever possible. If you find that insert_after and erase_after aren't
509adequate for your needs, and that you often need to use insert and erase in the middle of the list, then you
510should probably use list instead of slist.]]
511
512[*Boost.Container] updates the classic `slist` container with C++11 features like move semantics and placement
513insertion and implements it a bit differently than the standard C++ `forward_list`. `forward_list` has no `size()`
514method, so it's been designed to allow (or in practice, encourage) implementations without tracking list size
515with every insertion/erasure, allowing constant-time
516`splice_after(iterator, forward_list &, iterator, iterator)`-based list merging. On the other hand `slist` offers
517constant-time `size()` for those that don't care about linear-time `splice_after(iterator, slist &, iterator, iterator)`
518`size()` and offers an additional `splice_after(iterator, slist &, iterator, iterator, size_type)` method that
519can speed up `slist` merging when the programmer already knows the size. `slist` and `forward_list` are therefore
520complementary.
521
522[endsect]
523
524[section:static_vector ['static_vector]]
525
526`static_vector` is an hybrid between `vector` and `array`: like `vector`, it's a sequence container
527with contiguous storage that can change in size, along with the static allocation, low overhead,
528and fixed capacity of `array`. `static_vector` is based on Adam Wulkiewicz and Andrew Hundt's
529high-performance [@https://svn.boost.org/svn/boost/sandbox/varray/doc/html/index.html varray]
530class.
531
532The number of elements in a `static_vector` may vary dynamically up to a fixed capacity
533because elements are stored within the object itself similarly to an array. However, objects are
534initialized as they are inserted into `static_vector` unlike C arrays or `std::array` which must construct
535all elements on instantiation. The behavior of `static_vector` enables the use of statically allocated
536elements in cases with complex object lifetime requirements that would otherwise not be trivially
537possible. Some other properties:
538
539* Random access to elements
540* Constant time insertion and removal of elements at the end
541* Linear time insertion and removal of elements at the beginning or in the middle.
542
543`static_vector` is well suited for use in a buffer, the internal implementation of other
544classes, or use cases where there is a fixed limit to the number of elements that must be stored.
545Embedded and realtime applications where allocation either may not be available or acceptable
546are a particular case where `static_vector` can be beneficial.
547
548[endsect]
549
550[section:small_vector ['small_vector]]
551
552`small_vector` is a vector-like container optimized for the case when it contains few elements.
553It contains some preallocated elements in-place, which allows it to avoid the use of dynamic storage allocation
554when the actual number of elements is below that preallocated threshold. `small_vector` is inspired by
555[@http://llvm.org/docs/ProgrammersManual.html#llvm-adt-smallvector-h LLVM's `SmallVector`] container.
556Unlike `static_vector`, `small_vector`'s capacity can grow beyond the initial preallocated capacity.
557
558`small_vector<T, N, Allocator>` is convertible to `small_vector_base<T, Allocator>`, a type that is independent
559from the preallocated element count, allowing client code that does not need to be templated on that N argument.
560`small_vector` inherits all `vector`'s member functions so it supports all standard features like emplacement,
561stateful allocators, etc.
562
563[endsect]
564
565[endsect]
566
567[section:extended_functionality Extended functionality: Basic extensions]
568
569[section:default_initialialization Default initialization for vector-like containers]
570
571STL and most other containers value initialize new elements in common operations like
572`vector::resize(size_type n)` or `explicit vector::vector(size_type n)`.
573
574In some performance-sensitive environments, where vectors are used as a replacement for
575variable-size buffers for file or network operations,
576[@http://en.cppreference.com/w/cpp/language/value_initialization value initialization]
577is a cost that is not negligible as elements are going to be overwritten by an external source
578shortly after new elements are added to the container.
579
580[*Boost.Container] offers two new members for `vector`, `static_vector` and `stable_vector`:
581`explicit container::container(size_type n, default_init_t)` and
582`container::resize(size_type n, default_init_t)`, where new elements are constructed
583using [@http://en.cppreference.com/w/cpp/language/default_initialization default initialization].
584
585[endsect]
586
587[section:ordered_range_insertion Ordered range insertion for associative containers (['ordered_unique_range], ['ordered_range]) ]
588
589When filling associative containers big performance gains can be achieved if the input range to be inserted
590is guaranteed by the user to be ordered according to the predicate. This can happen when inserting values from a `set` to
591a `multiset` or between different associative container families (`[multi]set/map` vs. `flat_[multi]set/map`).
592
593[*Boost.Container] has some overloads for constructors and insertions taking an `ordered_unique_range_t` or
594an `ordered_range_t` tag parameters as the first argument. When an `ordered_unique_range_t` overload is used, the
595user notifies the container that the input range is ordered according to the container predicate and has no
596duplicates. When an `ordered_range_t` overload is used, the
597user notifies the container that the input range is ordered according to the container predicate but it might
598have duplicates. With this information, the container can avoid multiple predicate calls and improve insertion
599times.
600
601[endsect]
602
603[section:constant_time_range_splice Constant-time range splice for `(s)list`]
604
605In the first C++ standard `list::size()` was not required to be constant-time,
606and that caused some controversy in the C++ community. Quoting Howard Hinnant's
607[@http://howardhinnant.github.io/On_list_size.html ['On List Size]] paper:
608
609[: ['There is a considerable debate on whether `std::list<T>::size()` should be O(1) or O(N).
610The usual argument notes that it is a tradeoff with:]
611
612`splice(iterator position, list& x, iterator first, iterator last);`
613
614['If size() is O(1) and this != &x, then this method must perform a linear operation so that it
615can adjust the size member in each list]]
616
617C++11 definitely required `size()` to be O(1), so range splice became O(N). However,
618Howard Hinnant's paper proposed a new `splice` overload so that even O(1) `list:size()`
619implementations could achieve O(1) range splice when the range size was known to the caller:
620
621[: `void splice(iterator position, list& x, iterator first, iterator last, size_type n);`
622
623   [*Effects]: Inserts elements in the range [first, last) before position and removes the elements from x.
624
625   [*Requires]: [first, last) is a valid range in x. The result is undefined if position is an iterator in the range [first, last). Invalidates only the iterators and references to the spliced elements. n == distance(first, last).
626
627   [*Throws]: Nothing.
628
629   [*Complexity]: Constant time.
630]
631
632This new splice signature allows the client to pass the distance of the input range in.
633This information is often available at the call site. If it is passed in,
634then the operation is constant time, even with an O(1) size.
635
636[*Boost.Container] implements this overload for `list` and a modified version of it for `slist`
637(as `slist::size()` is also `O(1)`).
638
639[endsect]
640
641[endsect]
642
643[section:configurable_containers Extended functionality: Configurable containers]
644
645[*Boost.Container] offers the possibility to configure at compile time some parameters of
646several containers, apart from the stored type and the allocator. This configuration is passed as
647the last template parameter and defined using the utility classes. The following containers can receive
648useful configuration options:
649
650[section:configurable_tree_based_associative_containers Configurable tree-based associative ordered containers]
651
652[classref boost::container::set set], [classref boost::container::multiset multiset],
653[classref boost::container::map map] and [classref boost::container::multimap multimap] associative containers
654are implemented as binary search trees which offer the needed complexity and stability guarantees required by the
655C++ standard for associative containers.
656
657[*Boost.Container] offers the possibility to configure at compile time some parameters of the binary search tree
658implementation. This configuration is passed as the last template parameter and defined using the utility class
659[classref boost::container::tree_assoc_options tree_assoc_options]. The following parameters can be configured:
660
661*  The underlying [*tree implementation] type ([classref boost::container::tree_type tree_type]).
662   By default these containers use a red-black tree but the user can use other tree types:
663   *  [@http://en.wikipedia.org/wiki/Red%E2%80%93black_tree Red-Black Tree]
664   *  [@http://en.wikipedia.org/wiki/Avl_trees AVL tree]
665   *  [@http://en.wikipedia.org/wiki/Scapegoat_tree Scapegoat tree]. In this case Insertion and Deletion
666      are amortized O(log n) instead of O(log n).
667   *  [@http://en.wikipedia.org/wiki/Splay_tree Splay tree]. In this case Searches, Insertions and Deletions
668      are amortized O(log n) instead of O(log n).
669
670*  Whether the [*size saving] mechanisms are used to implement the tree nodes
671   ([classref boost::container::optimize_size optimize_size]). By default this option is activated and is only
672   meaningful to red-black and avl trees (in other cases, this option will be ignored).
673   This option will try to put rebalancing metadata inside the "parent" pointer of the node if the pointer
674   type has enough alignment. Usually, due to alignment issues, the metadata uses the size of a pointer yielding
675   to four pointer size overhead per node, whereas activating this option usually leads to 3 pointer size overhead.
676   Although some mask operations must be performed to extract
677   data from this special "parent" pointer, in several systems this option also improves performance due to the
678   improved cache usage produced by the node size reduction.
679
680See the following example to see how [classref boost::container::tree_assoc_options tree_assoc_options] can be
681used to customize these containers:
682
683[import ../example/doc_custom_tree.cpp]
684[doc_custom_tree]
685
686[endsect]
687
688[section:configurable_vectors Configurable vectors]
689
690The configuration for [classref boost::container::vector vector] is passed as
691the last template parameter and defined using the utility class
692[classref boost::container::vector_options vector_options]. The following parameters can be configured:
693
694*  [classref boost::container::growth_factor growth_factor]: the growth policy of the vector.
695   The rate at which the capacity of a vector grows is implementation dependent and
696   implementations choose exponential growth in order to meet the amortized constant time requirement for push_back.
697   A higher growth factor will make it faster as it will require less data movement, but it will have a greater memory
698   impact (on average, more memory will be unused). A user can provide a custom implementation of the growth factor and some
699   predefined policies are available: [classref boost::container::growth_factor_50 growth_factor_50],
700   [classref boost::container::growth_factor_60 growth_factor_60] and
701   [classref boost::container::growth_factor_50 growth_factor_100].
702
703*  [classref boost::container::stored_size stored_size]: the type that will be used to store size-related
704   parameters inside of the vector. Sometimes, when the maximum capacity to be used is much less than the
705   theoretical maximum that a vector can hold, it's interesting to use smaller unsigned integer types to represent
706   `size()` and `capacity()` inside vector, so that the size of an empty vector is minimized and cache
707   performance might be improved. See [classref boost::container::stored_size stored_size] for more details.
708
709See the following example to see how [classref boost::container::vector_options vector_options] can be
710used to customize `vector` container:
711
712[import ../example/doc_custom_vector.cpp]
713[doc_custom_vector]
714
715[endsect]
716
717[section:configurable_deques Configurable deques]
718
719The configuration for [classref boost::container::deque deque] is passed as
720the last template parameter and defined using the utility class
721[classref boost::container::deque_options deque_options]. The following parameters can be configured:
722
723Parameters that control the size of deque's 'block' (deque allocates contiguous chunks of elements, called 'blocks').
724Only one of these paratemers can be specified:
725
726*  [classref boost::container::block_bytes block_bytes]: the number of bytes deque will allocate for store
727   elements contiguously: `deque::get_block_size()` will return aproximately `block_bytes/sizeof(value_type)`.
728   A value of zero means the default value.
729
730*  [classref boost::container::block_size  block_size]: the number of elements deque will allocate contiguously.
731   If this option is specified, `deque::get_block_size()` will return the specified `block_size`.
732   A value of zero means the default value.
733
734See the following example to see how [classref boost::container::deque_options deque_options] can be
735used to customize `deque` container:
736
737[import ../example/doc_custom_deque.cpp]
738[doc_custom_deque]
739
740[endsect]
741
742[section:configurable_static_vectors Configurable static vector]
743
744The configuration for [classref boost::container::static_vector static_vector] is passed as
745the last template parameter and defined using the utility class
746[classref boost::container::static_vector_options static_vector_options]. The following parameters can be configured:
747
748*  [classref boost::container::inplace_alignment inplace_alignment]: the minimum alignment (in bytes) that the stored value type
749   needs. This option allows static vectors that need non-default alignments, e.g., to be used in SIMD operations.
750
751*  [classref boost::container::throw_on_overflow throw_on_overflow]: A boolean that specifies if the
752   container should throw an exception when the compile-time capacity is not enough to hold the requesteed number
753   of objects. When "false", if the capacit is overflowd, the implementation calls to BOOST_ASSERT and if that assertion
754   does not throw or abort, undefined behavior is triggered.
755
756See the following example to see how [classref boost::container::static_vector_options static_vector_options] can be
757used to customize `static_vector` container:
758
759[import ../example/doc_custom_static_vector.cpp]
760[doc_custom_static_vector]
761
762[endsect]
763
764[section:configurable_small_vectors Configurable small vector]
765
766The configuration for [classref boost::container::small_vector small_vector] is passed as
767the last template parameter and defined using the utility class
768[classref boost::container::small_vector_options small_vector_options]. The following parameters can be configured:
769
770*  [classref boost::container::inplace_alignment inplace_alignment]: the minimum alignment (in bytes) for the in-place storage
771   used to build the "small" number of elements. [*The alignment of the dynamic memory must be provided by the allocator
772   and it is not affected by this option].
773
774*  [classref boost::container::growth_factor growth_factor]: the growth policy of the vector.
775   The rate at which the capacity of a vector grows is implementation dependent and
776   implementations choose exponential growth in order to meet the amortized constant time requirement for push_back.
777   A higher growth factor will make it faster as it will require less data movement, but it will have a greater memory
778   impact (on average, more memory will be unused). A user can provide a custom implementation of the growth factor and some
779   predefined policies are available: [classref boost::container::growth_factor_50 growth_factor_50],
780   [classref boost::container::growth_factor_60 growth_factor_60] and
781   [classref boost::container::growth_factor_50 growth_factor_100].
782
783See the following example to see how [classref boost::container::small_vector_options small_vector_options] can be
784used to customize `small_vector` container:
785
786[import ../example/doc_custom_small_vector.cpp]
787[doc_custom_small_vector]
788
789[endsect]
790
791[endsect]
792
793[section:extended_allocators Extended functionality: Extended allocators]
794
795Many C++ programmers have ever wondered where does good old realloc fit in C++. And that's a good question.
796Could we improve [classref boost::container::vector vector] performance using memory expansion mechanisms
797to avoid too many copies? But [classref boost::container::vector vector] is not the only container that
798could benefit from an improved allocator interface: we could take advantage of the insertion of multiple
799elements in [classref boost::container::list list] using a burst allocation mechanism that could amortize
800costs (mutex locks, free memory searches...) that can't be amortized when using single node allocation
801strategies.
802
803These improvements require extending the STL allocator interface and use make use of a new
804general purpose allocator since new and delete don't offer expansion and burst capabilities.
805
806*  [*Boost.Container] containers support an extended allocator interface based on an evolution of proposals
807[@http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2006/n1953.html N1953: Upgrading the Interface of Allocators using API Versioning],
808[@http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2006/n2045.html N2045: Improving STL allocators]
809and the article
810[@http://www.drivehq.com/web/igaztanaga/allocplus/ Applying classic memory allocation strategies to C++ containers].
811The extended allocator interface is implemented by [classref boost::container::allocator allocator],
812[classref boost::container::adaptive_pool adaptive_pool] and [classref boost::container::node_allocator node_allocator]
813classes.
814
815*  Extended allocators use a modified [@http://g.oswego.edu/dl/html/malloc.html Doug Lea Malloc (DLMalloc)] low-level
816allocator and offers an C API to implement memory expansion and burst allocations. DLmalloc is known to be very size
817and speed efficient, and this allocator is used as the basis of many malloc implementations, including multithreaded
818allocators built above DLmalloc (See [@http://www.malloc.de/en/ ptmalloc2, ptmalloc3] or
819[@http://www.nedprod.com/programs/portable/nedmalloc/ nedmalloc]). This low-level allocator is implemented as
820a separately compiled library and the following extended allocators depend on the library:
821
822*  [classref boost::container::allocator allocator]: This extended allocator offers expansion, shrink-in place
823   and burst allocation capabilities implemented as a thin wrapper around the modified DLMalloc.
824   It can be used with all containers and it should be the default choice when the programmer wants to use
825   extended allocator capabilities.
826
827*  [classref boost::container::node_allocator node_allocator]: It's a
828   [@http://www.boost.org/doc/libs/1_55_0/libs/pool/doc/html/boost_pool/pool/pooling.html#boost_pool.pool.pooling.simple Simple Segregated Storage]
829   allocator, similar to [*Boost.Pool] that takes advantage of the modified DLMalloc burst interface. It does not return
830   memory to the DLMalloc allocator (and thus, to the system), unless explicitly requested. It does offer a very small
831   memory overhead so it's suitable for node containers ([boost::container::list list], [boost::container::slist slist]
832   [boost::container::set set]...) that allocate very small `value_type`s and it offers improved node allocation times
833   for single node allocations with respecto to [classref boost::container::allocator allocator].
834
835*  [classref boost::container::adaptive_pool adaptive_pool]: It's a low-overhead node allocator that can return memory
836   to the system. The overhead can be very low (< 5% for small nodes) and it's nearly as fast as [classref boost::container::node_allocator node_allocator].
837   It's also suitable for node containers.
838
839Use them simply specifying the new allocator in the corresponding template argument of your favourite container:
840
841[import ../example/doc_extended_allocators.cpp]
842[doc_extended_allocators]
843
844[endsect]
845
846[section:cpp_conformance C++11/C++14/C++17 Conformance]
847
848[*Boost.Container] aims for full C++11 conformance except reasoned deviations,
849backporting as much as possible for C++03. Obviously, this conformance is a work
850in progress so this section explains what C++11/C++14/C++17 features are implemented and which
851of them have been backported to earlier standard conformig compilers.
852
853[section:move_emplace Move and Emplace]
854
855For compilers with rvalue references and for those C++03 types that use
856[@http://www.boost.org/libs/move Boost.Move] rvalue reference emulation
857[*Boost.Container] supports all C++11 features related to move semantics: containers
858are movable, requirements for `value_type` are those specified for C++11 containers.
859
860For compilers with variadic templates, [*Boost.Container] supports placement insertion
861(`emplace`, ...) functions from C++11. For those compilers without variadic templates
862support [*Boost.Container] uses the preprocessor to create a set of overloads up to
863a finite number of parameters.
864
865[endsect]
866
867[section:alloc_traits_move_traits Stateful allocators]
868
869C++03 was not stateful-allocator friendly. For compactness of container objects and for
870simplicity, it did not require containers to support allocators with state: Allocator objects
871need not be stored in container objects. It was not possible to store an allocator with state,
872say an allocator that holds a pointer to an arena from which to allocate. C++03 allowed implementors
873to suppose two allocators of the same type always compare equal (that means that memory allocated
874by one allocator object could be deallocated by another instance of the same type) and
875allocators were not swapped when the container was swapped.
876
877C++11 further improves stateful allocator support through
878[@http://en.cppreference.com/w/cpp/memory/allocator_traits `std::allocator_traits`].
879`std::allocator_traits` is the protocol between a container and an allocator, and
880an allocator writer can customize its behaviour (should the container propagate it in
881move constructor, swap, etc.?) following `allocator_traits` requirements. [*Boost.Container]
882not only supports this model with C++11 but also [*backports it to C++03] via
883[classref boost::container::allocator_traits boost::container::allocator_traits] including some
884C++17 changes. This class
885offers some workarounds for C++03 compilers to achieve the same allocator guarantees as
886`std::allocator_traits`.
887
888In [Boost.Container] containers, if possible, a single allocator is hold to construct
889`value_type`s. If the container needs an auxiliary
890allocator (e.g. an array allocator used by `deque` or `stable_vector`), that allocator is also
891stored in the container and initialized from the user-supplied allocator when the
892container is constructed (i.e. it's not constructed on the fly when auxiliary memory is needed).
893
894[endsect]
895
896[section:scoped_allocator Scoped allocators]
897
898C++11 improves stateful allocators with the introduction of
899[@http://en.cppreference.com/w/cpp/memory/scoped_allocator_adaptor `std::scoped_allocator_adaptor`]
900class template. `scoped_allocator_adaptor` is instantiated with one outer allocator and zero or more inner
901allocators.
902
903A scoped allocator is a mechanism to automatically propagate the state of the allocator to the subobjects
904of a container in a controlled way. If instantiated with only one allocator type, the inner allocator
905becomes the `scoped_allocator_adaptor` itself, thus using the same allocator
906resource for the container and every element within the container and, if the elements themselves are
907containers, each of their elements recursively. If instantiated with more than one allocator, the first allocator
908is the outer allocator for use by the container, the second allocator is passed to the constructors of the
909container's elements, and, if the elements themselves are containers, the third allocator is passed to the
910elements' elements, and so on.
911
912[*Boost.Container] implements its own [classref boost::container::scoped_allocator_adaptor scoped_allocator_adaptor]
913class and [*backports this feature also
914to C++03 compilers]. Due to C++03 limitations, in those compilers
915the allocator propagation implemented by `scoped_allocator_adaptor::construct` functions
916will be based on traits ([classref boost::container::constructible_with_allocator_suffix constructible_with_allocator_suffix]
917and [classref boost::container::constructible_with_allocator_prefix constructible_with_allocator_prefix])
918proposed in [@http://www.open-std.org/jtc1/sc22/WG21/docs/papers/2008/n2554.pdf
919N2554: The Scoped Allocator Model (Rev 2) proposal]. In conforming C++11 compilers or compilers supporting SFINAE
920expressions (when `BOOST_NO_SFINAE_EXPR` is NOT defined), traits are ignored and C++11 rules
921(`is_constructible<T, Args..., inner_allocator_type>::value` and
922`is_constructible<T, allocator_arg_t, inner_allocator_type, Args...>::value`)
923will be used to detect if the allocator must be propagated with suffix or prefix allocator arguments.
924
925[endsect]
926
927[section:insertion_hints Insertion hints in associative containers and preserving
928 insertion ordering for elements with equivalent keys]
929
930[@http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html#233 LWG Issue #233] corrected a defect
931in C++98 and specified how equivalent keys were to be inserted in associative containers. [*Boost.Container]
932implements the C++11 changes that were specified in [@http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2005/n1780.html N1780
933['Comments on LWG issue 233: Insertion hints in associative containers]]:
934
935* `a_eq.insert(t)`: If a range containing elements equivalent to t exists in a_eq, t is inserted at the end of that range.
936* `a_eq.insert(p,t)`: t is inserted as close as possible to the position just prior to p.
937
938[endsect]
939
940[section:initializer_lists Initializer lists]
941
942[*Boost.Container] supports initialization, assignments and insertions from initializer lists
943in compilers that implement this feature.
944
945[endsect]
946
947[section:null_iterators Null Forward Iterators]
948
949[*Boost.Container] implements
950[@http://www.open-std.org/JTC1/sc22/WG21/docs/papers/2013/n3644.pdf C++14 Null Forward Iterators],
951which means that value-initialized iterators may be compared and compare equal
952to other value-initialized iterators of the same type. Value initialized iterators behave as if they refer
953past the end of the same empty sequence (example taken from N3644):
954
955[c++]
956
957   vector<int> v = { ... };
958   auto ni = vector<int>::iterator();
959   auto nd = vector<double>::iterator();
960   ni == ni; // True.
961   nd != nd; // False.
962   v.begin() == ni; // ??? (likely false in practice).
963   v.end() == ni;   // ??? (likely false in practice).
964   ni == nd; // Won't compile.
965
966[endsect]
967
968[section:polymorphic_memory_resources Polymorphic Memory Resources ]
969
970The document
971[@http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/n4480.html C++ Extensions for Library Fundamentals (final draft)]
972includes classes that provide allocator type erasure and runtime polymorphism. As Pablo Halpern, the author of the proposal,
973explains in the paper ([@https://isocpp.org/files/papers/N3916.pdf N3916 Polymorphic Memory Resources (r2)]):
974
975["['A significant impediment to effective memory management in C++ has been the
976inability to use allocators in non-generic contexts.  In large software systems,
977most of  the application program consists of non-generic procedural or
978object-oriented code that is compiled once and linked many times.]]
979
980["['Allocators in C++, however, have historically relied solely on
981compile-time polymorphism, and therefore have not been suitable for use in vocabulary
982types, which are passed through interfaces between separately-compiled modules,
983because the allocator type necessarily affects the type of the object that uses it.
984This proposal builds upon the improvements made to allocators in
985C++11 and describes a set of facilities for runtime polymorphic memory
986resources that interoperate with the existing compile-time polymorphic
987allocators.]]
988
989Most utilities from the Fundamentals TS were merged into C++17, but
990[*Boost.Container] offers them for C++03, C++11 and C++14 compilers.
991
992[*Boost.Container] implements nearly all classes of the proposal under
993the namespace `boost::container::pmr`. There are two groups,
994
995*  Header only utilities (these don't require the separately compiled library):
996   *	[classref boost::container::pmr::memory_resource memory_resource].
997   *	[classref boost::container::pmr::resource_adaptor resource_adaptor].
998
999*  Utilities that require the the separately compiled library:
1000   *	[classref boost::container::pmr::polymorphic_allocator polymorphic_allocator].
1001   *	[classref boost::container::pmr::monotonic_buffer_resource monotonic_buffer_resource].
1002   *	[classref boost::container::pmr::unsynchronized_pool_resource unsynchronized_pool_resource].
1003   *	[classref boost::container::pmr::synchronized_pool_resource synchronized_pool_resource].
1004   *  Global resource functions: [funcref  boost::container::pmr::get_default_resource get_default_resource]/
1005      [funcref  boost::container::pmr::set_default_resource set_default_resource]/
1006      [funcref  boost::container::pmr::new_delete_resource  new_delete_resource]/
1007      [funcref  boost::container::pmr::null_memory_resource null_memory_resource]
1008   *  Aliases for boost containers using the polymorphic allocator
1009      (like [classref boost::container::pmr::vector pmr::vector], etc.)
1010
1011[*Boost.Container]'s polymorphic resource library is usable from C++03 containers,
1012and offers some alternative utilities if the required C++11 features of the
1013['Library Fundamentals] specification are not available.
1014
1015[import ../example/doc_pmr.cpp]
1016
1017Let's review the usage example given in
1018[@https://isocpp.org/files/papers/N3916.pdf N3916] and see how it can be implemented
1019using [*Boost.Container]: ['Suppose we are processing a series of shopping lists, where a shopping list is a
1020container of strings, and storing them in a collection (a list) of shopping lists.
1021Each shopping list being processed uses a bounded amount of memory that is needed for
1022a short period of time, while the collection of shopping lists uses an unbounded
1023amount of memory and will exist for a longer period of time. For efficiency, we can
1024use a more time-efficient memory allocator based on a finite buffer for the temporary
1025shopping lists.]
1026
1027Let's see how `ShoppingList` can be defined to support an polymorphic memory resource
1028that can allocate memory from different underlying mechanisms. The most important
1029details are:
1030
1031* It should declare that supports an allocator defining an `allocator_type` typedef.
1032  This `allocator_type` will be of type [classref boost::container::pmr::memory_resource memory_resource *],
1033  which is a base class for polymorphic resources.
1034* It must define constructors that take the
1035  the allocator as argument. It can be implemented in two ways:
1036   * `ShoppingList` has constructors taking
1037      [classref boost::container::pmr::memory_resource memory_resource*] as the last argument.
1038   * `ShoppingList` has constructors taking
1039      [classref boost::container::allocator_arg_t allocator_arg_t] as the first argument
1040     and [classref boost::container::pmr::memory_resource memory_resource*] as the second argument.
1041
1042[*Note:] ['In C++03 compilers, it is required that the programmer specializes as `true`
1043[classref boost::container::constructible_with_allocator_suffix constructible_with_allocator_suffix] or
1044[classref boost::container::constructible_with_allocator_prefix constructible_with_allocator_prefix]
1045as in C++03 there is no way to automatically detect the chosen option at compile time. If
1046no specialization is done, [*Boost.Container] assumes the suffix option].
1047
1048[doc_pmr_ShoppingList_hpp]
1049
1050['However, this time-efficient allocator is not appropriate for the longer
1051lived collection of shopping lists. This example shows how those temporary shopping
1052lists, using a time-efficient allocator, can be used to populate the long lived collection
1053of shopping lists, using a general purpose allocator, something that would be
1054annoyingly difficult without the polymorphic allocators.]
1055
1056In [*Boost.Container] for the time-efficient allocation we can use
1057[classref boost::container::pmr::monotonic_buffer_resource monotonic_buffer_resource],
1058providing an external buffer that will be used until it's exhausted. In the default
1059configuration, when the buffer is exhausted, the default memory resource will be used
1060instead.
1061
1062[doc_pmr_main_cpp]
1063
1064['Notice that the shopping lists within `folder` use the default allocator resource
1065whereas the shopping list `temporaryShoppingList` uses the short-lived but very fast
1066`buf_rsrc`. Despite using different allocators, you can insert
1067`temporaryShoppingList` into folder because they have the same `ShoppingList`
1068type. Also, while `ShoppingList` uses memory_resource directly,
1069[classref boost::container::pmr::list pmr::list],
1070[classref boost::container::pmr::vector pmr::vector]
1071and [classref boost::container::pmr::string pmr::string] all use
1072[classref boost::container::pmr::polymorphic_allocator polymorphic_allocator].]
1073
1074['The resource passed to the `ShoppingList` constructor is propagated to the vector and
1075each string within that `ShoppingList`. Similarly, the resource used to construct
1076`folder` is propagated to the constructors of the ShoppingLists that are inserted into
1077the list (and to the strings within those `ShoppingLists`). The
1078[classref boost::container::pmr::polymorphic_allocator polymorphic_allocator]
1079template is designed to be almost interchangeable with a pointer to
1080[classref boost::container::pmr::memory_resource memory_resource],
1081thus producing a ['bridge] between the template-policy
1082style of allocator and the polymorphic-base-class style of allocator.]
1083
1084This example actually shows how easy is to use [*Boost.Container] to write
1085type-erasured allocator-capable classes even in C++03 compilers.
1086
1087[endsect]
1088
1089
1090[section:forward_list `forward_list<T>`]
1091
1092[*Boost.Container] does not offer C++11 `forward_list` container yet, but it will be available in future
1093versions.
1094
1095[endsect]
1096
1097[section:vector_exception_guarantees `vector` vs. `std::vector` exception guarantees]
1098
1099[classref boost::container::vector vector] does not support the strong exception guarantees
1100given by `std::vector` in functions like `insert`, `push_back`, `emplace`, `emplace_back`,
1101`resize`, `reserve` or `shrink_to_fit` for either copyable or no-throw moveable classes.
1102In C++11 [@http://en.cppreference.com/w/cpp/utility/move_if_noexcept move_if_noexcept] is used
1103to maintain C++03 exception safety guarantees combined with C++11 move semantics.
1104This strong exception guarantee degrades the insertion performance of copyable and throwing-moveable types,
1105degrading moves to copies when such types are inserted in the vector using the aforementioned
1106members.
1107
1108This strong exception guarantee also precludes the possibility of using some type of
1109in-place reallocations that can further improve the insertion performance of `vector` See
1110[link container.extended_allocators Extended Allocators] to know more
1111about these optimizations.
1112
1113[classref boost::container::vector vector] always uses move constructors/assignments
1114to rearrange elements in the vector and uses memory expansion mechanisms if the allocator supports them,
1115while offering only basic safety guarantees. It trades off exception guarantees for an improved performance.
1116
1117[endsect]
1118
1119[section:container_const_reference_parameters Parameter taken by const reference that can be changed]
1120
1121Several container operations use a parameter taken by const reference that can be changed during execution of the function.
1122[@http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-closed.html#526 LWG Issue 526
1123   (['Is it undefined if a function in the standard changes in parameters?])]
1124discusses them:
1125
1126[c++]
1127
1128   //Given std::vector<int> v
1129   v.insert(v.begin(), v[2]);
1130   //v[2] can be changed by moving elements of vector
1131
1132   //Given std::list<int> l:
1133   l.remove(*l.begin())
1134   //The operation could delete the first element, and then continue trying to access it.
1135
1136The adopted resolution, NAD (Not A Defect), implies that previous operations must be well-defined. This requires code
1137to detect a reference to an inserted element and an additional copy in that case, impacting performance even when
1138references to already inserted objects are not used. Note that equivalent functions taking rvalue references or
1139iterator ranges require elements not already inserted in the container.
1140
1141[*Boost.Container] prioritizes performance and has not implemented the NAD resolution:
1142in functions that might modify the argument, the library requires references to elements not stored
1143in the container. Using references to inserted elements yields to undefined behaviour (although in debug mode, this
1144precondition violation could be notified via BOOST_ASSERT).
1145
1146[endsect]
1147
1148[section:Vector_bool `vector<bool>` specialization]
1149
1150`vector<bool>` specialization has been quite problematic, and there have been several
1151unsuccessful tries to deprecate or remove it from the standard. [*Boost.Container] does not implement it
1152as there is a superior [@http://www.boost.org/libs/dynamic_bitset/ Boost.DynamicBitset]
1153solution. For issues with `vector<bool>` see the following papers:
1154
1155* [@http://howardhinnant.github.io/onvectorbool.html On `vector<bool>`]
1156* [@http://www.gotw.ca/publications/N1211.pdf vector<bool>: N1211: More Problems, Better Solutions],
1157* [@http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2160.html N2160: Library Issue 96: Fixing vector<bool>],
1158* [@http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2204.html N2204 A Specification to deprecate vector<bool>].
1159
1160Quotes:
1161
1162* ["['But it is a shame that the C++ committee gave this excellent data structure the name vector<bool> and
1163  that it gives no guidance nor encouragement on the critical generic algorithms that need to be optimized for this
1164  data structure. Consequently, few std::lib implementations go to this trouble.]]
1165
1166* ["['In 1998, admitting that the committee made a mistake was controversial.
1167  Since then Java has had to deprecate such significant portions of their libraries
1168  that the idea C++ would be ridiculed for deprecating a single minor template specialization seems quaint.]]
1169
1170* ["['`vector<bool>` is not a container and `vector<bool>::iterator` is not a random-access iterator
1171(or even a forward or bidirectional iterator either, for that matter). This has already broken user code
1172in the field in mysterious ways.]]
1173
1174* ["['`vector<bool>` forces a specific (and potentially bad) optimization choice on all users by enshrining
1175it in the standard. The optimization is premature; different users have different requirements. This too
1176has already hurt users who have been forced to implement workarounds to disable the 'optimization'
1177(e.g., by using a vector<char> and manually casting to/from bool).]]
1178
1179So `boost::container::vector<bool>::iterator` returns real `bool` references and works as a fully compliant container.
1180If you need a memory optimized version of `boost::container::vector<bool>`, please use
1181[@http://www.boost.org/libs/dynamic_bitset/ Boost.DynamicBitset].
1182
1183[endsect]
1184
1185[section:non_standard_memset_initialization Non-standard value initialization using `std::memset`]
1186
1187[*Boost.Container] uses `std::memset` with a zero value to initialize some types as in most platforms this
1188initialization yields to the desired value initialization with improved performance.
1189
1190Following the C11 standard, [*Boost.Container] assumes that ['for any integer type,
1191the object representation where all the bits are zero shall be a representation of the value
1192zero in that type]. Since `_Bool`/`wchar_t`/`char16_t`/`char32_t` are also integer types in C, it considers
1193all C++ integral types as initializable via `std::memset`.
1194
1195By default, [*Boost.Container] also considers floating point types to be initializable using `std::memset`.
1196Most platforms are compatible with this initialization, but in case this initialization is not desirable the
1197user can `#define BOOST_CONTAINER_MEMZEROED_FLOATING_POINT_IS_NOT_ZERO` before including library headers.
1198
1199By default, it also considers pointer types (pointer and pointer to function types, excluding
1200member object and member function pointers) to be initializable using `std::memset`.
1201Most platforms are compatible with this initialization, but in case this initialization is not desired the
1202user can `#define BOOST_CONTAINER_MEMZEROED_POINTER_IS_NOT_ZERO` before including library headers.
1203
1204If neither `BOOST_CONTAINER_MEMZEROED_FLOATING_POINT_IS_NOT_ZERO` nor
1205`BOOST_CONTAINER_MEMZEROED_POINTER_IS_NOT_ZERO` is defined [*Boost.Container] also considers POD
1206types to be value initializable via `std::memset` with value zero.
1207
1208[endsect]
1209
1210[endsect]
1211
1212[section:known_issues Known Issues]
1213
1214[section:move_emulation_limitations Move emulation limitations in C++03 compilers]
1215
1216[*Boost.Container] uses [*Boost.Move] to implement move semantics both in C++03 and C++11 compilers.
1217However, as explained in
1218[@http://www.boost.org/doc/libs/release/doc/html/move/emulation_limitations.html Emulation limitations],
1219there are some limitations in C++03 compilers that might surprise [*Boost.Container] users.
1220
1221The most noticeable problem is when [*Boost.Container] containers are placed in a struct with a
1222compiler-generated assignment operator:
1223
1224[c++]
1225
1226   class holder
1227   {
1228      boost::container::vector<MyType> vect;
1229   };
1230
1231   void func(const holder& h)
1232   {
1233      holder copy_h(h); //<--- ERROR: can't convert 'const holder&' to 'holder&'
1234      //Compiler-generated copy constructor is non-const:
1235      // holder& operator(holder &)
1236      //!!!
1237   }
1238
1239This limitation forces the user to define a const version of the copy assignment, in all classes
1240holding containers, which might be annoying in some cases.
1241
1242[endsect]
1243
1244[endsect]
1245
1246[section:history_and_reasons History and reasons to use Boost.Container]
1247
1248[section:boost_container_history Boost.Container history]
1249
1250[*Boost.Container] is a product of a long development effort that started
1251[@http://lists.boost.org/Archives/boost/2004/11/76263.php in 2004 with the experimental Shmem library],
1252which pioneered the use of standard containers in shared memory. Shmem included modified SGI STL container
1253code tweaked to support non-raw `allocator::pointer` types and stateful allocators. Once reviewed,
1254Shmem was accepted as [@http://www.boost.org/libs/interprocess/ Boost.Interprocess] and this library
1255continued to refine and improve those containers.
1256
1257In 2007, container code from node containers (`map`, `list`, `slist`) was rewritten, refactored
1258and expanded to build the intrusive container library [@http://www.boost.org/libs/intrusive/ Boost.Intrusive].
1259[*Boost.Interprocess] containers were refactored to take advantage of [*Boost.Intrusive] containers and
1260code duplication was minimized. Both libraries continued to gain support and bug fixes for years.
1261They introduced move semantics, emplacement insertion and more features of then unreleased C++0x
1262standard.
1263
1264[*Boost.Interprocess] containers were always standard compliant, and those containers and new
1265containers like `stable_vector` and `flat_[multi]set/map` were used outside [*Boost.Interprocess]
1266with success. As containers were mature enough to get their own library, it was a natural step to
1267collect them containers and build [*Boost.Container], a library targeted to a wider audience.
1268
1269[endsect]
1270
1271
1272[section:Why_boost_container Why Boost.Container?]
1273
1274With so many high quality standard library implementations out there, why would you want to
1275use [*Boost.Container]? There are several reasons for that:
1276
1277* Even if you have a earlier standard conforming compiler, you still can have access to many
1278  of the latest C++ standard features and have an easy code migration when you change your compiler.
1279* It's compatible with [*Boost.Interprocess] shared memory allocators.
1280* You have extremely useful new containers like `[stable/static/small]_vector` and `flat_[multi]set/map`.
1281* If you work on multiple platforms, you'll have a portable behaviour without depending
1282  on the std-lib implementation conformance of each platform. Some examples:
1283   * Default constructors don't allocate memory at all, which improves performance and
1284   usually implies a no-throw guarantee (if predicate's or allocator's default constructor doesn't throw).
1285   * Small string optimization for [classref boost::container::basic_string basic_string].
1286* [link container.extended_functionality Extended functionality] beyond the standard based
1287   on user feedback to improve code performance.
1288* You need a portable implementation that works when compiling without exceptions support or
1289  you need to customize the error handling when a container needs to signal an exceptional error.
1290
1291[endsect]
1292
1293[endsect]
1294
1295[include auto_index_helpers.qbk]
1296
1297[section:index Indexes]
1298
1299[named_index class_name Class Index]
1300[named_index typedef_name Typedef Index]
1301[named_index function_name Function Index]
1302[/named_index macro_name Macro Index]
1303[/index]
1304
1305[endsect]
1306
1307[xinclude autodoc.xml]
1308
1309[section:acknowledgements_notes Acknowledgements, notes and links]
1310
1311*  Original standard container code comes from [@http://www.sgi.com/tech/stl/ SGI STL library],
1312   which enhanced the original HP STL code. Code was rewritten for
1313   [*Boost.Interprocess] and moved to [*Boost.Intrusive]. Many thanks to Alexander Stepanov, Meng Lee, David Musser,
1314   Matt Austern... and all HP and SGI STL developers.
1315
1316*  `flat_[multi]_map/set` containers were originally based on [@http://en.wikipedia.org/wiki/Loki_%28C%2B%2B%29 Loki's]
1317   AssocVector class. Code was rewritten and expanded for [*Boost.Interprocess], so thanks to Andrei Alexandrescu.
1318
1319*  `stable_vector` was invented and coded by
1320   [@http://bannalia.blogspot.com/2008/09/introducing-stablevector.html Joaqu\u00EDn M. L\u00F3pez Mu\u00F1oz],
1321   then adapted for [*Boost.Interprocess]. Thanks for such a great container.
1322
1323*  `static_vector` was based on Andrew Hundt's and Adam Wulkiewicz's high-performance `varray` class.
1324   Many performance improvements of `vector` were also inspired by their implementation. Thanks!
1325
1326*  `devector` is based on Thaler Benedek's high-performance `devector` implementation, then
1327   adapted for [*Boost.Container]. Also inspired by similar implemenations by Orson Peters and Lars Hagen.
1328   Thanks for such a great code and documentation!
1329
1330*  Howard Hinnant's help and advices were essential when implementing move semantics,
1331   improving allocator support or implementing small string optimization. Thanks Howard
1332   for your wonderful standard library implementations.
1333
1334*  And finally thanks to all Boosters who helped all these years, improving, fixing and
1335   reviewing all my libraries.
1336
1337[endsect]
1338
1339[section:release_notes Release Notes]
1340
1341[section:release_notes_boost_1_76_00 Boost 1.76 Release]
1342
1343* Added [[no-discard]] attribute in all containers to catch bugs related to unused return values.
1344
1345* Replaced default standard exception classes with Boost.Container own classes, reducing considerably the included files overhead.
1346  Example: in MSVC 19 `boost/container/vector.hpp` preprocessed file size reduces from 1,5MB to 930KB. If you still want to use
1347  standard exception classes, you can define `BOOST_CONTAINER_USE_STD_EXCEPTIONS` before using any Boost.Container class.
1348
1349* Fixed bugs/issues:
1350   * [@https://github.com/boostorg/container/issues/102    GitHub #102: ['"flat_map::insert ambiguous with initializer list & pairs that need to convert"]].
1351   * [@https://github.com/boostorg/container/issues/139    GitHub #139: ['"flat_map merge and iterators"]].
1352   * [@https://github.com/boostorg/container/issues/141    GitHub #141: ['"small_vector does not propagate no throw properties of move operation of contained type"]].
1353   * [@https://github.com/boostorg/container/issues/164    GitHub #164: ['"Compile error when using `pmr::map` with a `std::pair`; works when using a `std::tuple`"]].
1354   * [@https://github.com/boostorg/container/issues/171    GitHub #171: ['"deque::clear() uses undefined behaviour"]].
1355
1356[endsect]
1357
1358[section:release_notes_boost_1_75_00 Boost 1.75 Release]
1359
1360* New [classref boost::container::devector devector] container.
1361
1362* Fixed bugs/issues:
1363   * [@https://github.com/boostorg/container/issues/152    GitHub #152: ['"Tree-based containers have troubles with move-only types"]].
1364   * [@https://github.com/boostorg/container/issues/156    GitHub #156: ['"Compile error with vector"]].
1365   * [@https://github.com/boostorg/container/pull/157      GitHub #157: ['"Add missing include"]].
1366   * [@https://github.com/boostorg/container/issues/159    GitHub #159: ['"pmr::monotonic_buffer_resource crashes on large single allocations"]].
1367   * [@https://github.com/boostorg/container/issues/160    GitHub #160: ['"Usage of uses_allocator needs a remove_cvref_t"]].
1368   * [@https://github.com/boostorg/container/issues/162    GitHub #162: ['"small_vector on MSVC x86 call-by-value crash"]].
1369   * [@https://github.com/boostorg/container/issues/161    GitHub #161: ['"polymorphic_allocator(memory_resource*) non-standard extension causes headache"]].
1370   * [@https://github.com/boostorg/container/pull/163      GitHub #163: ['"container_rebind for small_vector with options"]].
1371   * [@https://github.com/boostorg/container/issues/165    GitHub #165: ['"Link error with shared library and memory_resource inline members"]].
1372   * [@https://github.com/boostorg/container/pull/166      GitHub #166: ['"Fix encoding error in copyright headers"]].
1373   * [@https://github.com/boostorg/container/pull/167      GitHub #167: ['"error: the address of 'msg' will always evaluate as 'true' warning with GCC 4.4"]].
1374   * [@https://github.com/boostorg/container/issues/169    GitHub #169: ['"flood of warnings building dlmalloc_ext_2_8_6.c on clang11"]].
1375
1376[endsect]
1377
1378[section:release_notes_boost_1_74_00 Boost 1.74 Release]
1379
1380* Fixed bugs/issues:
1381   * [@https://github.com/boostorg/container/issues/125    GitHub #125: ['"flat_map doc misleading complexity"]].
1382   * [@https://github.com/boostorg/container/issues/126    GitHub #126: ['"flat_set.hpp and set.hpp in pmr have the same header guard"]].
1383   * [@https://github.com/boostorg/container/issues/128    GitHub #128: ['"moved from small_vector and static_vector calls destructor on elements in static part"]].
1384   * [@https://github.com/boostorg/container/issues/129    GitHub #129: ['"Alias templates for small_flat_[multi]{set|map} using small_vector as container"]].
1385   * [@https://github.com/boostorg/container/pull/135      GitHub #135: ['"Missing BOOST_NORETURN for user defined functions"]].
1386   * [@https://github.com/boostorg/container/pull/137      GitHub #137: ['"RandomAccessIterator + 0"]].
1387   * [@https://github.com/boostorg/container/pull/138      GitHub #138: ['"Remove Classes from Global Namespace"]].
1388   * [@https://github.com/boostorg/container/issues/142    GitHub #142: ['"memset called with null pointer"]].
1389   * [@https://github.com/boostorg/container/issues/144    GitHub #144: ['"GCC suggest-override warnings"]].
1390   * [@https://github.com/boostorg/container/issues/145    GitHub #145: ['"Allocations not handled correctly in some cases of vector move with unequal allocators"]].
1391   * [@https://github.com/boostorg/container/pull/146      GitHub #146: ['"Changes for Embarcadero C++ clang-based compilers, targeting Boost 1.74. Addition needed for Embarcardero clang-based compilers"]].
1392   * [@https://github.com/boostorg/container/pull/148      GitHub #148: ['"Fix static initialization issues in pmr global resources"]].
1393   * [@https://github.com/boostorg/container/pull/149      GitHub #149: ['"InitializeCriticalSectionEx returns "BOOL" (int)"]].
1394   * [@https://github.com/boostorg/container/issues/151    GitHub #151: ['"Buffer overflow in monotonic_buffer_resource::do_allocate"]].
1395
1396[endsect]
1397
1398[section:release_notes_boost_1_72_00 Boost 1.72 Release]
1399
1400* Fixed bugs:
1401   * [@https://github.com/boostorg/container/issues/127    GitHub #127: ['"Fix docs for static_vector::max_size() and capacity()"]].
1402   * [@https://github.com/boostorg/container/issues/132    GitHub #132: ['"flat_map::lower_bound and upper_bound have wrong/misleading docs"]].
1403   * [@https://github.com/boostorg/container/issues/133    GitHub #133: ['"basic_string move constructor with allocator argument has incorrect allocator check"]].
1404
1405[endsect]
1406
1407[section:release_notes_boost_1_71_00 Boost 1.71 Release]
1408
1409* Fixed bugs:
1410   * [@https://github.com/boostorg/container/pull/47    GitHub #47: ['"added alignment specification for small_vector"]].
1411   * [@https://github.com/boostorg/container/issues/88  GitHub #88: ['"Implement C++17 MoveAssignable requirements for self-move assignments"]].
1412   * [@https://github.com/boostorg/container/issues/107 GitHub #107: ['"Alignment ignored in resource_adaptor"]].
1413   * [@https://github.com/boostorg/container/pull/109   GitHub #109: ['"Get rid of integer overflow in copy_move_algo.hpp (-fsanitize=integer)"]].
1414   * [@https://github.com/boostorg/container/pull/110   GitHub #110: ['"Avoid gcc 9 deprecated copy warnings in new_allocator.hpp"]].
1415   * [@https://github.com/boostorg/container/issues/112 GitHub #112: ['"vector::resize() compilation error with msvc-10..12: data is not a member of boost::detail::aligned_storage"]].
1416   * [@https://github.com/boostorg/container/issues/114 GitHub #114: ['"Fix small_vector noexcept specification"]].
1417   * [@https://github.com/boostorg/container/issues/116 GitHub #116: ['"MSVC + boost 1.70 compilation error when windows.h is already included (detail/thread_mutex.hpp)"]].
1418   * [@https://github.com/boostorg/container/issues/117 GitHub #117: ['"flat_map/map::insert_or_assign with hint has wrong return types"]].
1419   * [@https://github.com/boostorg/container/issues/118 GitHub #118: ['"Non-unique inplace_set_difference used in in flat_tree_merge_unique and iterator invalidation in insert_unique"]].
1420   * [@https://github.com/boostorg/container/issues/122 GitHub #122: ['"Fix has_trivial_destructor_after_move"]].
1421   * [@https://github.com/boostorg/container/issues/123 GitHub #123: ['"With heterogeneous lookup, `equal_range` can result in a range with length greater than 1"]].
1422
1423* [classref boost::container::deque deque] can now have options, using [classref boost::container::deque_options deque_options].
1424  The block size/bytes can be be specified.
1425
1426* [classref boost::container::static_vector static_vector] can now have options, using [classref boost::container::static_vector_options static_vector_options].
1427    Alignment and throwing behaviour can be be specified.
1428
1429* [classref boost::container::small_vector small_vector] can now have options, using [classref boost::container::small_vector_options small_vector_options].
1430    Alignment and growth factor can be be specified.
1431
1432[endsect]
1433
1434[section:release_notes_boost_1_70_00 Boost 1.70 Release]
1435
1436* Removed support for already deprecated GCC < 4.3 and MSVC < 9.0 (Visual 2008) compilers.
1437* Default allocator parameter changed form `new_allocator<T>` to `void` to reduce symbol lenghts.
1438* Fixed bugs:
1439   * [@https://github.com/boostorg/container/pull/96 GitHub #96: ['"Workaround: Intel compilers do not offer CTAD yet"]].
1440   * [@https://github.com/boostorg/container/issues/97 GitHub #97: ['"buffer overflow in boost::container::flat_map on FreeBSD"]].
1441   * [@https://github.com/boostorg/container/issues/98 GitHub #98: ['"flat_map: insert_or_assign does not work with hint"]].
1442   * [@https://github.com/boostorg/container/issues/100 GitHub #100: ['"Compile error on Green Hills: container_detail::flat_tree has no member insert"]].
1443   * [@https://github.com/boostorg/container/pull/103 GitHub #103: ['"Fix deallocating never-allocated storage in vector.merge()"]].
1444   * [@https://github.com/boostorg/container/pull/104 GitHub #104: ['"Fix -Wmissing-noreturn clang warnings"]].
1445   * [@https://github.com/boostorg/container/pull/105 GitHub #105: ['"Fix gcc -Wdeprecated-copy"]].
1446   * [@https://github.com/boostorg/container/issues/111 GitHub #111: ['"container::vector of interprocess::offset_ptrs to variants holding incomplete type"]].
1447
1448[endsect]
1449
1450[section:release_notes_boost_1_69_00 Boost 1.69 Release]
1451
1452* Deprecated GCC < 4.3 and MSVC < 9.0 (Visual 2008) compilers.
1453
1454* Implemented C++20 `contains()` for associative containers as specified in
1455   [@http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2018/p0458r2.html
1456   P0458R2: Checking for Existence of an Element in Associative Containers].
1457
1458* Fixed serious bug in heterogeneous lookup functions (is_transparent was broken).
1459
1460* Fixed bugs:
1461   * [@https://github.com/boostorg/container/issues/77 GitHub #77: ['"warning: 'sbrk' is deprecated"]].
1462   * [@https://github.com/boostorg/container/issues/79 GitHub #79: ['"Mark small_vector move operations noexcept"]].
1463   * [@https://github.com/boostorg/container/issues/80 GitHub #80: ['"flat_map deduction guides are ambiguous"]].
1464   * [@https://github.com/boostorg/container/issues/81 GitHub #81: ['"Vector with custom allocator does not support value types with operator&"]].
1465   * [@https://github.com/boostorg/container/issues/82 GitHub #82: ['"Function definition in header file"]].
1466   * [@https://github.com/boostorg/container/issues/83 GitHub #83: ['"Iterator zero incrementing leads to assert on empty vector"]].
1467   * [@https://github.com/boostorg/container/pull/84   GitHub #84: ['"Allow vector to be assigned to itself"]].
1468   * [@https://github.com/boostorg/container/pull/85   GitHub #85: ['"container: misc-typos"]].
1469   * [@https://github.com/boostorg/container/pull/86   GitHub #86: ['"Add missing warning re-enabling include"]].
1470   * [@https://github.com/boostorg/container/issues/89 GitHub #89: ['"UBSAN failures detected in preflight CI PR"]].
1471   * [@https://github.com/boostorg/container/issues/90 GitHub #90: ['"Build fails on clang-5 with libstdc++7-dev (C++17 issue)"]].
1472   * [@https://github.com/boostorg/container/issues/93 GitHub #93: ['"vector::erase memory leak"]].
1473
1474[endsect]
1475
1476[section:release_notes_boost_1_68_00 Boost 1.68 Release]
1477
1478* Improved correctness of [classref boost::container::adaptive_pool adaptive_pool] and many parameters are now compile-time
1479  constants instead of runtime constants.
1480
1481* Implemented C++14's heterogeneous lookup functions for `[multi]map/[multi]set/flat_[multi]map/flat_[multi]set`.
1482
1483* Added [@https://github.com/boostorg/container/pull/71 GitHub #71: ['"Constructor Template Auto Deduction guides "]].
1484
1485* Fixed bugs:
1486   * [@https://svn.boost.org/trac/boost/ticket/13533 Trac #13533:  ['"Boost vector resize causes assert(false)"]].
1487   * [@https://github.com/boostorg/container/issues/73 GitHub #73: ['"triviality of pair"]].
1488   * [@https://github.com/boostorg/container/issues/74 GitHub #74: ['"vector assignment not using memcpy"]].
1489   * [@https://github.com/boostorg/container/issues/75 GitHub #75: ['"flat_set: Heap overflow"]].
1490   * [@https://github.com/boostorg/container/issues/76 GitHub #76: ['"flat_set: undefined behaviour on empty range"]].
1491   * Fixed race condition bug in [classref boost::container::pmr::unsynchronized_pool_resource unsynchronized_pool_resource]
1492     found by Arthur O'Dowyer in his blog post
1493     [@https://quuxplusone.github.io/blog/2018/06/05/libcpp-memory-resource/ <memory_resource> for libc++]
1494
1495* Implemented proposed resolution for
1496  [@https://cplusplus.github.io/LWG/issue3120 ['"LWG 3120 Unclear behavior of monotonic_buffer_resource::release()"]].
1497  After `release()` the original buffer is recovered for the next allocation.
1498
1499[endsect]
1500
1501[section:release_notes_boost_1_67_00 Boost 1.67 Release]
1502
1503* ['vector] can now have options, using [classref boost::container::vector_options vector_options].
1504  The growth factor and the stored size type can be specified.
1505
1506* Improved range insertion in ['flat_[multi]map/set] containers overall complexity is reduced to O(NlogN).
1507
1508* Fixed bugs:
1509   * [@https://github.com/boostorg/container/pull/61 GitHub #61: ['"Compile problems on Android ndk r16 beta 1"]].
1510   * [@https://github.com/boostorg/container/pull/64 GitHub #64: ['"Fix splice for slist"]].
1511   * [@https://github.com/boostorg/container/issues/58 GitHub #65: ['"`pmr::monotonic_buffer_resource::allocate()` can return a pointer to freed memory after `release()` is called"]].
1512   * [@https://svn.boost.org/trac/boost/ticket/13500 Trac #13500:  ['"Memory leak when using erase on string vectors"]].
1513
1514[endsect]
1515
1516[section:release_notes_boost_1_66_00 Boost 1.66 Release]
1517
1518* ['flat_[multi]map/set] can now work as container adaptors, as proposed in [@http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2017/p0429r1.pdf P0429R1].
1519  The allocator argument is checked for ['size()] and ['empty()] members. If so, the argument is interpreted as the required underlying container.
1520  This means that ['static_vector], ['stable_vector] and ['small_vector] can be used now with flat associative containers.
1521
1522* Fixed bugs:
1523   * [@https://github.com/boostorg/container/pull/54 GitHub #54: ['"no sbrk() in VxWorks, configure dlmalloc to use only mmap"]].
1524   * [@https://github.com/boostorg/container/issues/58 GitHub #58: ['"Comparing strings does not compile in gcc 7+ in C++17 mode"]].
1525   * [@https://github.com/boostorg/container/issues/59 GitHub #59: ['"basic_string::npos is missing its definition"]].
1526
1527[endsect]
1528
1529[section:release_notes_boost_1_65_00 Boost 1.65 Release]
1530
1531* Implemented `extract_sequence`, `adopt_sequence` functions for flat_[multi]map/set associative containers.
1532
1533* Fixed bugs:
1534   * [@https://github.com/boostorg/container/pull/48 GitHub #48: ['"Replace deprecated/removed C++98 binders"]].
1535   * [@https://github.com/boostorg/container/pull/49 GitHub #49: ['"Remove useless allocator copy in map"]].
1536   * [@https://github.com/boostorg/container/pull/50 GitHub #50: ['"Fixed bug Trac #13038"]].
1537   * [@https://github.com/boostorg/container/pull/51 GitHub #51: ['"Fix integer rollover that triggers clang ubsan when U is unsigned"]].
1538
1539[endsect]
1540
1541[section:release_notes_boost_1_64_00 Boost 1.64 Release]
1542
1543* Fixed bugs:
1544   * [@https://svn.boost.org/trac/boost/ticket/11333 Trac #11333: ['"boost::basic_string_ref should interop with boost::container::basic_string"]].
1545   * [@https://svn.boost.org/trac/boost/ticket/12749 Trac #12749: ['"container::pmr::polymorphic_allocator compilation error"]].
1546   * [@https://svn.boost.org/trac/boost/ticket/12915 Trac #12915: ['"Buffer overflow in boost::container::vector (affects flat_set)"]].
1547   * [@https://github.com/boostorg/container/pull/45 GitHub #45: ['"emplace_back must return reference to back(), not to *end()"]].
1548   * [@https://github.com/boostorg/container/pull/46 GitHub #46: ['"Fix use of propagate_on_container_swap"]].
1549
1550[endsect]
1551
1552[section:release_notes_boost_1_63_00 Boost 1.63 Release]
1553
1554* Fixed bugs:
1555   * [@https://svn.boost.org/trac/boost/ticket/12534 Trac #12534: ['"flat_map fails to compile if included after type_traits is instantiated under gcc"]].
1556   * [@https://svn.boost.org/trac/boost/ticket/12577 Trac #12577: ['"Null reference in pair.hpp triggers runtime warning with -fsanitize=undefined"]].
1557   * [@https://github.com/boostorg/container/pull/41 GitHub #40: ['Fix parameter types in copy_move_algo.hpp: iterator_traits::difference_type -> allocator_traits::size_type]].
1558   * [@https://github.com/boostorg/container/pull/41 GitHub #41: ['Avoid -Wunreachable-code in do_allocate()]].
1559
1560[endsect]
1561
1562[section:release_notes_boost_1_62_00 Boost 1.62 Release]
1563
1564* Fixed bugs:
1565   * [@https://svn.boost.org/trac/boost/ticket/9481  Trac #9481:  ['"Minor comment typo in Boost.Container"]].
1566   * [@https://svn.boost.org/trac/boost/ticket/9689  Trac #9689:  ['"Add piecewise_construct to boost::container"]].
1567   * [@https://svn.boost.org/trac/boost/ticket/11170 Trac #11170: ['"Doc slip for index_of"]].
1568   * [@https://svn.boost.org/trac/boost/ticket/11802 Trac #11802: ['"Incorrect ordering after using insert() with ordered_range_t on a flat_multiset with a non-default sort order"]].
1569   * [@https://svn.boost.org/trac/boost/ticket/12117 Trac #12117: ['"flat_set constructor with ordered_unique_range"]].
1570   * [@https://svn.boost.org/trac/boost/ticket/12177 Trac #12177: ['"vector::priv_merge uses unqualified uintptr_t"]].
1571   * [@https://svn.boost.org/trac/boost/ticket/12183 Trac #12183: ['"GCC 6.1 thinks boost::container::string violates strict aliasing"]].
1572   * [@https://svn.boost.org/trac/boost/ticket/12256 Trac #12256: ['"set<std::pair<int,int>>::insert cause compilation error in debug configuration in Visual Studio 2012"]].
1573   * [@https://svn.boost.org/trac/boost/ticket/12273 Trac #12273: ['"static_vector max_size() and capacity() should be constant expressions"]].
1574     Added constant `static_vector<>::static_capacity` to use the configured capacity in constant expressions.
1575   * [@https://svn.boost.org/trac/boost/ticket/12286 Trac #12286: ['"PMR flat_map from Boost Container does not compile"]].
1576   * [@https://svn.boost.org/trac/boost/ticket/12296 Trac #12296: ['"{deque,string} combine for a memory leak"]].
1577   * [@https://svn.boost.org/trac/boost/ticket/12319 Trac #12319: ['"flat_set` should be nothrow move constructible"]].
1578
1579* Revised noexcept expressions of default and move constructors in all containers.
1580* Implemented C++17's `insert_or_assign`/`try_emplace` for [classref boost::container::map map] and [classref boost::container::flat_map flat_map].
1581* Implemented C++17's [@http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0083r3.pdf ['Splicing Maps and Sets (Revision 5)]]
1582   for [classref boost::container::map map], [classref boost::container::multimap multimap],
1583   [classref boost::container::set set], [classref boost::container::multiset multiset].
1584* Implemented C++17's [@http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0084r2.pdf ['P0084R2 Emplace Return Type]]
1585  in `deque`, `vector`, `stable_vector`, `small_vector`, `static_vector`, `list` and `slist`.
1586
1587[endsect]
1588
1589[section:release_notes_boost_1_61_00 Boost 1.61 Release]
1590
1591* [classref boost::container::small_vector] supports more constructors and assignments.
1592* Fixed bugs:
1593   * [@https://svn.boost.org/trac/boost/ticket/11820 Trac #11820: ['"compiler error when using operator[] of map"]].
1594   * [@https://svn.boost.org/trac/boost/ticket/11856 Trac #11856: ['"pool_resource.cpp error: declaration changes meaning"]].
1595   * [@https://svn.boost.org/trac/boost/ticket/11866 Trac #11866: ['"small_vector does not have range constructor"]].
1596   * [@https://svn.boost.org/trac/boost/ticket/11867 Trac #11867: ['"small_vector should have constructor and assignment operator taking other small_vector"]].
1597   * [@https://svn.boost.org/trac/boost/ticket/11912 Trac #11912: ['"flat_map use of vector::priv_forward_range_insert_expand_backwards may cause move with same source"]].
1598   * [@https://svn.boost.org/trac/boost/ticket/11957 Trac #11957: ['"static_vector::max_size() is higher than the capacity"]].
1599   * [@https://svn.boost.org/trac/boost/ticket/12014 Trac #12014: ['"boost::container::set can not insert const (ref) range"]].
1600   * [@https://github.com/boostorg/container/pull/33 GitHub #33: ['Make sure std::string constructor is available]].
1601
1602[endsect]
1603
1604[section:release_notes_boost_1_60_00 Boost 1.60 Release]
1605
1606* Implemented [link container.cpp_conformance.polymorphic_memory_resources Polymorphic Memory Resources].
1607* Add more BOOST_ASSERT checks to test preconditions in some operations (like `pop_back`, `pop_front`, `back`, `front`, etc.)
1608* Added C++11 `back`/`front` operations to [classref boost::container::basic_string basic_string].
1609* Fixed bugs:
1610   * [@https://svn.boost.org/trac/boost/ticket/11627 Trac #11627: ['"small_vector<T,n>::swap() appears to be broken"]].
1611   * [@https://svn.boost.org/trac/boost/ticket/11628 Trac #11628: ['"small_vector<int,n> iterates over elements in destructor"]].
1612   * [@https://svn.boost.org/trac/boost/ticket/11697 Trac #11697: ['"Wrong initialization order in tuple copy-constructor"]].
1613   * [@https://svn.boost.org/trac/boost/ticket/11698 Trac #11698: ['"Missing return statement in static_storage_allocator"]].
1614   * [@https://github.com/boostorg/container/pull/29 GitHub #29: ['Doc fixes for flap_map complexity requirements]].
1615   * [@https://github.com/boostorg/container/pull/31 GitHub #31: ['DL_SIZE_IMPL also dereference addr]].
1616
1617[endsect]
1618
1619[section:release_notes_boost_1_59_00 Boost 1.59 Release]
1620
1621* [@https://github.com/boostorg/container/pull/26 GitHub #26: ['Fix bug in stable_vector::capacity()]]. Thanks to timsong-cpp/Arindam Mukerjee.
1622* [@https://github.com/boostorg/container/pull/27 GitHub #27: ['fix stable_vector's index_of's doxygen comment]]. Thanks to kariya-mitsuru.
1623* [@https://svn.boost.org/trac/boost/ticket/11380 Trac #11380: ['"Container library std forward declarations incorrect in std_fwd.hpp on libc++ with gcc"]].
1624* [@https://svn.boost.org/trac/boost/ticket/11388 Trac #11388: ['"boost::container::list::emplace_back broken on Visual Studio 2010"]].
1625* [@https://svn.boost.org/trac/boost/ticket/11339 Trac #11339: ['"VC12 LNK2005 error with boost::container::adaptive_pool"]].
1626
1627[endsect]
1628
1629[section:release_notes_boost_1_58_00 Boost 1.58 Release]
1630*  Experimental [classref boost::container::small_vector small_vector] container.
1631*  Massive dependency reorganization. Now [*Boost.Container] depends on very basic utilities like Boost.Core
1632   and [*Boost.Intrusive]. Preprocessed code size have decreased considerably and compilation times have improved.
1633*  Added `nth` and `index_of` functions to containers with random-access iterators (except `basic_string`).
1634*  Added C++17's `allocator_traits<Allocator>::is_always_equal`.
1635*  Updated containers to implement new constructors as specified in
1636   [@http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html#2210 2210. Missing allocator-extended constructor for allocator-aware containers].
1637*  Fixed bugs:
1638   * [@https://svn.boost.org/trac/boost/ticket/9931  Trac #9931: ['"flat_map::insert(ordered_unique_range_t...) fails with move_iterators"]] (reopened).
1639   * [@https://svn.boost.org/trac/boost/ticket/11076 Trac #11076: ['"Unqualified calls to memmove/memcpy in container/detail/copy_move_algo.hpp"]].
1640   * [@https://svn.boost.org/trac/boost/ticket/10790 Trac #10790 (['"long long errors from container"])].
1641   * [@https://svn.boost.org/trac/boost/ticket/10808 Trac #10808 (['"compare equal operator of vector is broken"])].
1642   * [@https://svn.boost.org/trac/boost/ticket/10930 Trac #10930 (['"container std_fwd.hpp neglects custom std namespaces"])].
1643   * [@https://svn.boost.org/trac/boost/ticket/11139 Trac #11139 (['"boost::container::vector<std::shared_ptr<const T>...>::const_iterator allows changing dereferenced elements"])].
1644* [*Source Breaking]: [classref boost::container::scoped_allocator_adaptor scoped_allocator_adaptor]'s
1645   `propagate_on_container_copy_assignment`, `propagate_on_container_move_assignment` and `propagate_on_container_swap`
1646   are no longer `::boost::integral_constant<bool, true/false>` types. The dependency reorganization needed to break
1647   with those classes to avoid MPL dependencies, and interoperability with `std::integral_constant` was not guaranteed.
1648   Code assumming `boost::true_type/boost::false_type` on this will not compile. As a workaround, use the guaranteed internal
1649   `::value` constant: `::boost::integral_constant<bool, scoped_allocator_adaptor<Allocator>::propagate_on_container_move_assignment::value>`.
1650
1651[endsect]
1652
1653[section:release_notes_boost_1_57_00 Boost 1.57 Release]
1654*  Added support for `initializer_list`. Contributed by Robert Matusewicz.
1655*  Fixed double destruction bugs in vector and backward expansion capable allocators.
1656*  Fixed bugs:
1657   * [@https://svn.boost.org/trac/boost/ticket/10263 Trac #10263 (['"AIX 6.1 bug with sched_yield() function out of scope"])].
1658   * [@https://github.com/boostorg/container/pull/16 GitHub #16: ['Fix iterators of incomplete type containers]]. Thanks to Mikael Persson.
1659
1660[endsect]
1661
1662[section:release_notes_boost_1_56_00 Boost 1.56 Release]
1663
1664* Added DlMalloc-based [link container.extended_allocators Extended Allocators].
1665
1666* [link container.configurable_containers.configurable_tree_based_associative_containers Improved configurability]
1667   of tree-based ordered associative containers. AVL, Scapegoat and Splay trees are now available
1668   to implement [classref boost::container::set set], [classref boost::container::multiset multiset],
1669   [classref boost::container::map map] and [classref boost::container::multimap multimap].
1670
1671* Fixed bugs:
1672   *  [@https://svn.boost.org/trac/boost/ticket/9338 #9338: ['"VS2005 compiler errors in swap() definition after including container/memory_util.hpp"]].
1673   *  [@https://svn.boost.org/trac/boost/ticket/9637 #9637: ['"Boost.Container vector::resize() performance issue"]].
1674   *  [@https://svn.boost.org/trac/boost/ticket/9648 #9648: ['"string construction optimization - char_traits::copy could be used ..."]].
1675   *  [@https://svn.boost.org/trac/boost/ticket/9801 #9801: ['"I can no longer create and iterator_range from a stable_vector"]].
1676   *  [@https://svn.boost.org/trac/boost/ticket/9915 #9915: ['"Documentation issues regarding vector constructors and resize methods - value/default initialization"]].
1677   *  [@https://svn.boost.org/trac/boost/ticket/9916 #9916: ['"Allocator propagation incorrect in the assignment operator of most"]].
1678   *  [@https://svn.boost.org/trac/boost/ticket/9931 #9931: ['"flat_map::insert(ordered_unique_range_t...) fails with move_iterators"]].
1679   *  [@https://svn.boost.org/trac/boost/ticket/9955 #9955: ['"Using memcpy with overlapped buffers in vector"]].
1680
1681[endsect]
1682
1683[section:release_notes_boost_1_55_00 Boost 1.55 Release]
1684
1685*  Implemented [link container.main_features.scary_iterators SCARY iterators].
1686
1687*  Fixed bugs [@https://svn.boost.org/trac/boost/ticket/8269 #8269],
1688              [@https://svn.boost.org/trac/boost/ticket/8473 #8473],
1689              [@https://svn.boost.org/trac/boost/ticket/8892 #8892],
1690              [@https://svn.boost.org/trac/boost/ticket/9009 #9009],
1691              [@https://svn.boost.org/trac/boost/ticket/9064 #9064],
1692              [@https://svn.boost.org/trac/boost/ticket/9092 #9092],
1693              [@https://svn.boost.org/trac/boost/ticket/9108 #9108],
1694              [@https://svn.boost.org/trac/boost/ticket/9166 #9166].
1695
1696* Added `default initialization` insertion functions to vector-like containers
1697   with new overloads taking `default_init_t` as an argument instead of `const value_type &`.
1698
1699[endsect]
1700
1701[section:release_notes_boost_1_54_00 Boost 1.54 Release]
1702
1703*  Added experimental `static_vector` class, based on Andrew Hundt's and Adam Wulkiewicz's
1704   high performance `varray` class.
1705*  Speed improvements in `vector` constructors/copy/move/swap, dispatching to memcpy when possible.
1706*  Support for `BOOST_NO_EXCEPTIONS` [@https://svn.boost.org/trac/boost/ticket/7227 #7227].
1707*  Fixed bugs [@https://svn.boost.org/trac/boost/ticket/7921 #7921],
1708              [@https://svn.boost.org/trac/boost/ticket/7969 #7969],
1709              [@https://svn.boost.org/trac/boost/ticket/8118 #8118],
1710              [@https://svn.boost.org/trac/boost/ticket/8294 #8294],
1711              [@https://svn.boost.org/trac/boost/ticket/8553 #8553],
1712              [@https://svn.boost.org/trac/boost/ticket/8724 #8724].
1713
1714[endsect]
1715
1716[section:release_notes_boost_1_53_00 Boost 1.53 Release]
1717
1718*  Fixed bug [@https://svn.boost.org/trac/boost/ticket/7650 #7650].
1719*  Improved `vector`'s insertion performance.
1720*  Changed again experimental multiallocation interface for better performance (still experimental).
1721*  Added no exception support for those willing to disable exceptions in their compilers.
1722*  Fixed GCC -Wshadow warnings.
1723*  Replaced deprecated BOOST_NO_XXXX with newer BOOST_NO_CXX11_XXX macros.
1724
1725[endsect]
1726
1727[section:release_notes_boost_1_52_00 Boost 1.52 Release]
1728
1729*  Improved `stable_vector`'s template code bloat and type safety.
1730*  Changed typedefs and reordered functions of sequence containers to improve doxygen documentation.
1731*  Fixed bugs
1732  [@https://svn.boost.org/trac/boost/ticket/6615 #6615],
1733  [@https://svn.boost.org/trac/boost/ticket/7139 #7139],
1734  [@https://svn.boost.org/trac/boost/ticket/7215 #7215],
1735  [@https://svn.boost.org/trac/boost/ticket/7232 #7232],
1736  [@https://svn.boost.org/trac/boost/ticket/7269 #7269],
1737  [@https://svn.boost.org/trac/boost/ticket/7439 #7439].
1738*  Implemented LWG Issue #149 (range insertion now returns an iterator) & cleaned up insertion code in most containers
1739*  Corrected aliasing errors.
1740
1741[endsect]
1742
1743[section:release_notes_boost_1_51_00 Boost 1.51 Release]
1744
1745*  Fixed bugs
1746  [@https://svn.boost.org/trac/boost/ticket/6763 #6763],
1747  [@https://svn.boost.org/trac/boost/ticket/6803 #6803],
1748  [@https://svn.boost.org/trac/boost/ticket/7114 #7114],
1749  [@https://svn.boost.org/trac/boost/ticket/7103 #7103].
1750  [@https://svn.boost.org/trac/boost/ticket/7123 #7123],
1751
1752[endsect]
1753
1754[section:release_notes_boost_1_50_00 Boost 1.50 Release]
1755
1756*  Added Scoped Allocator Model support.
1757
1758*  Fixed bugs
1759  [@https://svn.boost.org/trac/boost/ticket/6606 #6606],
1760  [@https://svn.boost.org/trac/boost/ticket/6533 #6533],
1761  [@https://svn.boost.org/trac/boost/ticket/6536 #6536],
1762  [@https://svn.boost.org/trac/boost/ticket/6566 #6566],
1763  [@https://svn.boost.org/trac/boost/ticket/6575 #6575],
1764
1765[endsect]
1766
1767
1768[section:release_notes_boost_1_49_00 Boost 1.49 Release]
1769
1770*  Fixed bugs
1771  [@https://svn.boost.org/trac/boost/ticket/6540 #6540],
1772  [@https://svn.boost.org/trac/boost/ticket/6499 #6499],
1773  [@https://svn.boost.org/trac/boost/ticket/6336 #6336],
1774  [@https://svn.boost.org/trac/boost/ticket/6335 #6335],
1775  [@https://svn.boost.org/trac/boost/ticket/6287 #6287],
1776  [@https://svn.boost.org/trac/boost/ticket/6205 #6205],
1777  [@https://svn.boost.org/trac/boost/ticket/4383 #4383].
1778
1779*  Added `allocator_traits` support for both C++11 and C++03
1780   compilers through an internal `allocator_traits` clone.
1781
1782[endsect]
1783
1784[section:release_notes_boost_1_48_00 Boost 1.48 Release]
1785
1786*  First release. Container code from [*Boost.Interprocess] was deleted
1787   and redirected to [*Boost.Container ] via using directives.
1788
1789[endsect]
1790
1791[endsect]
1792