STL-like containers from Boost
Go to file
Ion Gaztañaga 6291e6c1bd Update quickbook version to 1.7 and fix detected errors in qbk 2024-03-18 00:01:22 +01:00
.drone add drone config [ci skip] 2021-01-21 19:30:35 +00:00
.github/workflows Add new toolsets and fix clang+libstdc++ incompatibility in Ubuntu 22.04 2024-01-02 17:16:42 +01:00
bench Remove Boost.StaticAsser dependency 2024-01-02 19:46:05 +01:00
build Fixed bug Trac #13038 2017-05-22 10:47:07 +02:00
doc Update quickbook version to 1.7 and fix detected errors in qbk 2024-03-18 00:01:22 +01:00
example Remove Boost.StaticAsser dependency 2024-01-02 19:46:05 +01:00
include/boost/container Change internal_storage() implementation to avoid UBSan errors when N is zero. 2024-01-03 02:34:58 +01:00
meta [skip ci] Add "cxxstd" json field. The "cxxstd" json field is being added to each Boost library's meta json information for libraries in order to specify the minumum C++ standard compilation level. The value of this field matches one of the values for 'cxxstd' in Boost.Build. The purpose of doing this is to provide information for the Boost website documentation for each library which will specify the minimum C++ standard compilation that an end-user must employ in order to use the particular library. This will aid end-users who want to know if they can successfully use a Boost library based on their C++ compiler's compilation level, without having to search the library's documentation to find this out. 2021-01-19 12:39:23 -05:00
proj Update quickbook version to 1.7 and fix detected errors in qbk 2024-03-18 00:01:22 +01:00
src Remove Boost.StaticAsser dependency 2024-01-02 19:46:05 +01:00
test Rewrite default_init_test() to make harder for the compiler to optimize because we rely on UB to test memory was not initialized. 2024-01-04 00:59:38 +01:00
.drone.star add drone config [ci skip] 2021-01-21 19:30:35 +00:00
.gitattributes Move top-level boost directory over to "devel" (temporarily) 2007-07-31 20:32:15 +00:00
.gitignore Update quickbook version to 1.7 and fix detected errors in qbk 2024-03-18 00:01:22 +01:00
CMakeLists.txt Update CMakeLists.txt with new dependencies 2023-02-01 23:02:40 +01:00
Jamfile Add general Jamfile 2018-06-26 21:50:16 +02:00
LICENSE_1_0.txt Add Boost Software License 2021-11-18 11:40:54 -05:00
README.md Make sure test suite/examples/bench compile with exceptions disabled (exception-handling=off) 2020-10-22 01:12:59 +02:00
index.html Removed trailing whitespaces 2014-05-28 15:50:13 +02:00

README.md

Boost.Container

Boost.Container, part of collection of the Boost C++ Libraries, implements several well-known containers, including STL containers. The aim of the library is to offer advanced features not present in standard containers, to offer the latest standard draft features for compilers that don't comply with the latest C++ standard and to offer useful non-STL containers.

License

Distributed under the Boost Software License, Version 1.0.

Properties

  • C++03
  • Mostly header-only, library compilation is required for few features.
  • Supports compiler modes without exceptions support (e.g. -fno-exceptions).

Build Status

Branch Travis Appveyor Coverity Scan codecov.io Deps Docs Tests
master Build Status Build status Coverity Scan Build Status codecov Deps Documentation Enter the Matrix
develop Build Status Build status Coverity Scan Build Status codecov Deps Documentation Enter the Matrix

Directories

Name Purpose
doc documentation
example examples
include headers
proj ide projects
test unit tests

More information

  • Ask questions
  • Report bugs: Be sure to mention Boost version, platform and compiler you're using. A small compilable code sample to reproduce the problem is always good as well.
  • Submit your patches as pull requests against develop branch. Note that by submitting patches you agree to license your modifications under the Boost Software License, Version 1.0.
  • Discussions about the library are held on the Boost developers mailing list. Be sure to read the discussion policy before posting and add the [container] tag at the beginning of the subject line.