![]() |
Boost.uBlas 1.49
Linear Algebra in C++: matrices, vectors and numeric algorithms
|
00001 00017 #ifndef BOOST_NUMERIC_UBLAS_OPERATION_C_ARRAY_HPP 00018 #define BOOST_NUMERIC_UBLAS_OPERATION_C_ARRAY_HPP 00019 00020 #include <boost/numeric/ublas/traits/c_array.hpp> 00021 00022 namespace boost { namespace numeric { namespace ublas { 00023 00024 namespace detail { 00025 00026 00027 00028 } // namespace boost::numeric::ublas::detail 00029 00030 00031 template <typename T> 00032 BOOST_UBLAS_INLINE 00033 typename ExprT::const_iterator begin(vector_expression<ExprT> const& e) 00034 { 00035 return detail::begin_impl<typename ExprT::type_category>::apply(e()); 00036 } 00037 00038 00039 }}} // Namespace boost::numeric::ublas 00040 00041 #endif