Skip to content

Commit

Permalink
boost
Browse files Browse the repository at this point in the history
  • Loading branch information
dwight committed Nov 5, 2007
1 parent 0a78810 commit 931e633
Show file tree
Hide file tree
Showing 3,787 changed files with 663,014 additions and 4 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
Binary file added boost/boost/Debug/BuildLog.htm
Binary file not shown.
Binary file added boost/boost/Debug/boost.lib
Binary file not shown.
Binary file added boost/boost/Debug/vc90.idb
Binary file not shown.
Binary file added boost/boost/Debug/vc90.pdb
Binary file not shown.
22 changes: 22 additions & 0 deletions boost/boost/ReadMe.txt
@@ -0,0 +1,22 @@
========================================================================
STATIC LIBRARY : boost Project Overview
========================================================================

AppWizard has created this boost library project for you.

No source files were created as part of your project.


boost.vcproj
This is the main project file for VC++ projects generated using an Application Wizard.
It contains information about the version of Visual C++ that generated the file, and
information about the platforms, configurations, and project features selected with the
Application Wizard.

/////////////////////////////////////////////////////////////////////////////
Other notes:

AppWizard uses "TODO:" comments to indicate parts of the source code you
should add to or customize.

/////////////////////////////////////////////////////////////////////////////
47 changes: 47 additions & 0 deletions boost/boost/algorithm/minmax.hpp
@@ -0,0 +1,47 @@
// (C) Copyright Herve Bronnimann 2004.
// Use, modification and distribution are 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)

/*
Revision history:
1 July 2004
Split the code into two headers to lessen dependence on
Boost.tuple. (Herve)
26 June 2004
Added the code for the boost minmax library. (Herve)
*/

#ifndef BOOST_ALGORITHM_MINMAX_HPP
#define BOOST_ALGORITHM_MINMAX_HPP

/* PROPOSED STANDARD EXTENSIONS:
*
* minmax(a, b)
* Effect: (b<a) ? std::make_pair(b,a) : std::make_pair(a,b);
*
* minmax(a, b, comp)
* Effect: comp(b,a) ? std::make_pair(b,a) : std::make_pair(a,b);
*
*/

#include <boost/tuple/tuple.hpp> // for using pairs with boost::cref
#include <boost/ref.hpp>

namespace boost {

template <typename T>
tuple< T const&, T const& >
minmax(T const& a, T const& b) {
return (b<a) ? make_tuple(cref(b),cref(a)) : make_tuple(cref(a),cref(b));
}

template <typename T, class BinaryPredicate>
tuple< T const&, T const& >
minmax(T const& a, T const& b, BinaryPredicate comp) {
return comp(b,a) ? make_tuple(cref(b),cref(a)) : make_tuple(cref(a),cref(b));
}

} // namespace boost

#endif // BOOST_ALGORITHM_MINMAX_HPP

0 comments on commit 931e633

Please sign in to comment.