Documentation for the minmax library.

Moved from libs/minmax/ to libs/algorithm/minmax
Also changed documentation to reflect use of Boost.tuple
and separation into two header files. --Herve'


[SVN r23308]
This commit is contained in:
Hervé Brönnimann
2004-07-01 20:15:51 +00:00
parent ec606bbf14
commit cf85da14ed
13 changed files with 1782 additions and 0 deletions

23
minmax/test/Jamfile Normal file
View File

@ -0,0 +1,23 @@
# Boost.Minmax Library Test Jamfile
#
# Copyright (C) 2002--2004, Herve Bronnimann
#
# Use, modification, and distribution is subject to the Boost Software
# License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
#
subproject libs/algorithm/minmax/test ;
# bring in rules for testing
SEARCH on testing.jam = $(BOOST_BUILD_PATH) ;
include testing.jam ;
# Make tests run by default.
DEPENDS all : test ;
{
test-suite minmax:
[ run minmax_element_test.cpp ]
;
}