Files
Timed-Altarica-To-Fiacre-Tr…/sdk/boost/numeric/bindings/boost/array.hpp
2018-12-06 16:01:56 +01:00

48 lines
1.2 KiB
C++

//
// 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_BOOST_ARRAY_HPP
#define BOOST_NUMERIC_BINDINGS_BOOST_ARRAY_HPP
#include <boost/numeric/bindings/detail/adaptor.hpp>
#include <boost/array.hpp>
namespace boost {
namespace numeric {
namespace bindings {
namespace detail {
template< typename T, std::size_t N, typename Id, typename Enable >
struct adaptor< boost::array<T,N>, Id, Enable > {
typedef typename copy_const< Id, T >::type value_type;
typedef mpl::map<
mpl::pair< tag::value_type, value_type >,
mpl::pair< tag::entity, tag::vector >,
mpl::pair< tag::size_type<1>, mpl::int_<N> >,
mpl::pair< tag::data_structure, tag::linear_array >,
mpl::pair< tag::stride_type<1>, tag::contiguous >
> property_map;
static value_type* begin_value( Id& t ) {
return t.begin();
}
static value_type* end_value( Id& t ) {
return t.end();
}
};
} // namespace detail
} // namespace bindings
} // namespace numeric
} // namespace boost
#endif