gitextract_nspmsd4k/ ├── .circleci/ │ ├── autocancel.sh │ └── config.yml ├── .gitattributes ├── .github/ │ └── workflows/ │ ├── ci.yml │ ├── commit-bot.yml │ └── release-cmake.yml ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CMakeLists.txt ├── INSTALL ├── Jamroot ├── LICENSE_1_0.txt ├── README.md ├── appveyor.yml ├── boost-build.jam ├── boost.css ├── boostcpp.jam ├── bootstrap.bat ├── bootstrap.sh ├── doc/ │ ├── Jamfile.v2 │ ├── html/ │ │ ├── Assignable.html │ │ ├── CopyConstructible.html │ │ ├── accumulators.html │ │ ├── any.html │ │ ├── array.html │ │ ├── atomic.html │ │ ├── bbv2/ │ │ │ └── installation.html │ │ ├── bbv2.html │ │ ├── boost_asio.html │ │ ├── boost_lexical_cast.html │ │ ├── boost_random.html │ │ ├── boost_staticassert.html │ │ ├── boost_typeerasure.html │ │ ├── boostbook.html │ │ ├── chrono.html │ │ ├── circular_buffer.html │ │ ├── container.html │ │ ├── date_time/ │ │ │ ├── date_time_io.html │ │ │ ├── details.html │ │ │ └── local_time.html │ │ ├── date_time.html │ │ ├── foreach.html │ │ ├── function.html │ │ ├── hash/ │ │ │ └── custom.html │ │ ├── hash.html │ │ ├── heap.html │ │ ├── interprocess.html │ │ ├── intrusive.html │ │ ├── lambda.html │ │ ├── lockfree.html │ │ ├── move.html │ │ ├── mpi.html │ │ ├── program_options.html │ │ ├── property_tree.html │ │ ├── proto.html │ │ ├── quickbook.html │ │ ├── ratio.html │ │ ├── ref.html │ │ ├── signals.html │ │ ├── signals2.html │ │ ├── string_algo.html │ │ ├── thread.html │ │ ├── tribool.html │ │ ├── typeof.html │ │ ├── unordered.html │ │ ├── variant.html │ │ └── xpressive.html │ ├── pdf/ │ │ ├── Jamfile.v2 │ │ └── build │ ├── src/ │ │ ├── boost.xml │ │ ├── boostbook.css │ │ ├── docutils.css │ │ ├── minimal.css │ │ └── reference.css │ └── test/ │ ├── HTML4_symbols.qbk │ ├── Jamfile.v2 │ ├── array.xml │ ├── array1.xml │ ├── array2.xml │ ├── array3.xml │ ├── array4.xml │ ├── gold/ │ │ ├── boost/ │ │ │ ├── accumulators/ │ │ │ │ ├── extract/ │ │ │ │ │ └── weighted_tail_quantile.html │ │ │ │ ├── impl/ │ │ │ │ │ └── weighted_tail_quantile__id330053.html │ │ │ │ └── tag/ │ │ │ │ └── weighted_tail_quantile.html │ │ │ └── array.html │ │ ├── document_to_test_formatting/ │ │ │ ├── accumulators.html │ │ │ ├── array.html │ │ │ ├── basic_formatting.html │ │ │ ├── blurbs.html │ │ │ ├── code_blocks.html │ │ │ ├── images.html │ │ │ ├── lists_and_tables.html │ │ │ ├── remez.html │ │ │ └── test.html │ │ └── index.html │ ├── remez.qbk │ ├── stub.cpp │ ├── test.mml │ ├── test.qbk │ ├── test_HTML4_symbols.qbk │ └── weighted_tail_quantile.hpp ├── index.htm ├── index.html ├── libs/ │ ├── Jamfile.v2 │ ├── index.html │ ├── libraries.htm │ ├── maintainers.txt │ ├── numeric/ │ │ ├── doc/ │ │ │ └── build.jam │ │ ├── index.html │ │ └── sublibs │ └── platform_maintainers.txt ├── rst.css ├── status/ │ ├── Jamfile.v2 │ ├── boost-no-inspect │ ├── boost_check_library.py │ ├── expected_results.xml │ ├── explicit-failures-markup.xml │ └── explicit-failures.xsd └── tools/ ├── Jamfile.v2 ├── index.html └── make-cputime-page.pl