7 #ifndef _MGCPP_OPERATIONS_SUBSTRACTION_HPP_ 8 #define _MGCPP_OPERATIONS_SUBSTRACTION_HPP_ 25 template <
typename LhsDenseVec,
typename RhsDenseVec,
typename Type>
26 inline decltype(
auto)
sub(dense_vector<LhsDenseVec, Type> const& lhs,
27 dense_vector<RhsDenseVec, Type> const& rhs);
35 template <typename LhsDenseMat, typename RhsDenseMat, typename Type>
36 inline decltype(auto)
sub(dense_matrix<LhsDenseMat, Type> const& lhs,
37 dense_matrix<RhsDenseMat, Type> const& rhs);
41 #include <mgcpp/operations/sub.tpp> decltype(auto) sub(dense_vector< LhsDenseVec, Type > const &lhs, dense_vector< RhsDenseVec, Type > const &rhs)
Definition: adapter_base.hpp:12