Cpp boost

From wikinotes

Boost is a portable, peer-reviewed collection of C++ libraries. It is licensed very liberally, similar to the MIT or BSD licenses.

Some noteworthy additions:

  • tuples
  • filesystem
  • foreach (extends cpp foreach)
  • format (string)
  • coroutines
  • log
  • parameters (keyword arguments)
  • process (portable multiprocessing)
  • regex
  • sort
  • stacktrace
  • test
  • thread (portable threading)


Documentation

API index (each library has own api-docs) https://www.boost.org/doc/libs/1_69_0/
homepage https://www.boost.org/
boost license https://www.boost.org/users/license.html
getting started (unix) https://www.boost.org/doc/libs/1_69_0/more/getting_started/unix-variants.html
getting started (windows) https://www.boost.org/doc/libs/1_69_0/more/getting_started/windows.html

Libraries

cpp boost: Test unittesting framework

3rd Party Library

cpp turtle mock library