1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #ifndef BOOST_NUMERIC_UBLAS_OPERATION_C_ARRAY_HPP
- #define BOOST_NUMERIC_UBLAS_OPERATION_C_ARRAY_HPP
- #include <boost/numeric/ublas/traits/c_array.hpp>
- namespace boost { namespace numeric { namespace ublas {
- namespace detail {
-
-
- }
- template <typename T>
- BOOST_UBLAS_INLINE
- typename ExprT::const_iterator begin(vector_expression<ExprT> const& e)
- {
- return detail::begin_impl<typename ExprT::type_category>::apply(e());
- }
- }}}
- #endif
|