Boost (C++ libraries)

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by 70.184.214.35 (talk) at 09:41, 23 August 2017. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Initial releaseSeptember 1, 1999; 24 years ago (1999-09-01)[1]
Stable release
1.64.0 / April 19, 2017; 7 years ago (2017-04-19)[2]
Repository
Written inC++
Operating systemCross-platform
TypeLibraries
LicenseBoost Software License
Websitewww.boost.org

Boost is a set of libraries for the C++ programming language that provide support for tasks and structures such as linear algebra, pseudorandom number generation, multithreading, image processing, regular expressions, and unit testing. It contains over eighty individual libraries.

Most of the Boost libraries are licensed under the Boost Software License, designed to allow Boost to be used with both free and proprietary software projects. Many of Boost's founders are on the C++ standards committee, and several Boost libraries have been accepted for incorporation into both the C++ Technical Report 1 and the C++11 standard.[3]

Design

The libraries are aimed at a wide range of C++ users and application domains. They range from general-purpose libraries like the smart pointer library, to operating system abstractions like Boost FileSystem, to libraries primarily aimed at other library developers and advanced C++ users, like the template metaprogramming (MPL) and domain-specific language (DSL) creation (Proto).

In order to ensure efficiency and flexibility, Boost makes extensive use of templates. Boost has been a source of extensive work and research into generic programming and metaprogramming in C++.[citation needed]

Most Boost libraries are header based, consisting of inline functions and templates, and as such do not need to be built in advance of their use. Some Boost libraries coexist as independent libraries.[4][5]

Associated people

The original founders of Boost that are still active in the community include Beman Dawes and David Abrahams. Author of several books on C++, Nicolai Josuttis contributed to the Boost array library in 2001. There are mailing lists devoted to Boost library use and library development, active as of 2015.[6]

License

Boost is licensed under its own free, open-source license, known as the Boost Software License.[7] It is a permissive license in the style of the BSD license and the MIT license, but without requiring attribution for redistribution in binary form.[8] The license has been OSI-approved since February 2008[9][10] and is considered a free software license, compatible with the GNU General Public License, by the Free Software Foundation.[11]

See also

References

  1. ^ "Old Versions". Retrieved 11 April 2017.
  2. ^ "Boost Version History". Retrieved 22 May 2017.
  3. ^ "Library Technical Report". JTC1/SC22/WG21 - The C++ Standards Committee. 2 July 2003. Retrieved 1 February 2012.
  4. ^ "Asio web site".
  5. ^ "Spirit web-site".
  6. ^ "Boost Mailing Lists (A.K.A. Discussion Groups)". Retrieved 30 October 2015.
  7. ^ http://www.boost.org/LICENSE_1_0.txt
  8. ^ Dawes, Beman. "Boost Software License". Retrieved 2016-08-01.
  9. ^ "Boost mailing list archive".
  10. ^ "Boost Software License 1.0 (BSL-1.0) | Open Source Initiative".
  11. ^ "Various Licenses and Comments about Them - GNU Project - Free Software Foundation (FSF)".

Further reading

  • Demming, Robert; Duffy, Daniel J. (2010). Introduction to the Boost C++ Libraries. Vol. Volume 1 - Foundations. Datasim. ISBN 978-94-91028-01-4. {{cite book}}: |volume= has extra text (help); Unknown parameter |lastauthoramp= ignored (|name-list-style= suggested) (help)
  • Demming, Robert; Duffy, Daniel J. (2012). Introduction to the Boost C++ Libraries. Vol. Volume 2 - Advanced Libraries. Datasim. ISBN 978-94-91028-02-1. {{cite book}}: |volume= has extra text (help); Unknown parameter |lastauthoramp= ignored (|name-list-style= suggested) (help)
  • Mukherjee, Arindam (2015). Learning Boost C++ Libraries. Packt. ISBN 978-1-78355-121-7.
  • Polukhin, Antony (2013). Boost C++ Application Development Cookbook. Packt. ISBN 978-1-84951-488-0.
  • Schäling, Boris (2011). The Boost C++ Libraries. XML Press. ISBN 978-0-9822191-9-5.
  • Schäling, Boris (2014). The Boost C++ Libraries (2 ed.). XML Press. p. 570. ISBN 978-1-937434-36-6.
  • Siek, Jeremy G.; Lee, Lie-Quan; Lumsdaine, Andrew (2001). The Boost Graph Library: User Guide and Reference Manual. Addison-Wesley. ISBN 978-0-201-72914-6. {{cite book}}: Unknown parameter |lastauthoramp= ignored (|name-list-style= suggested) (help)

External links