1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
//
// Copyright (c) 2009 Rutger ter Borg
//
// Distributed under 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)
//
#ifndef BOOST_NUMERIC_BINDINGS_LOWER_HPP
#define BOOST_NUMERIC_BINDINGS_LOWER_HPP
#include <boost/numeric/bindings/detail/basic_wrapper.hpp>
#include <boost/numeric/bindings/tag.hpp>
namespace boost {
namespace numeric {
namespace bindings {
namespace result_of {
template< typename T >
struct lower {
typedef detail::basic_wrapper<
T,
mpl::pair< tag::matrix_type, tag::triangular >,
mpl::pair< tag::data_side, tag::lower >
> type;
};
} // namespace result_of
template< typename T >
typename result_of::lower< T >::type const lower( T& underlying ) {
return typename result_of::lower< T >::type( underlying );
}
template< typename T >
typename result_of::lower< const T >::type const lower( const T& underlying ) {
return typename result_of::lower< const T >::type( underlying );
}
} // namespace bindings
} // namespace numeric
} // namespace boost
#endif
|