Boost C++ 库

...世界上最受推崇和设计精良的 C++ 库项目之一。 Herb SutterAndrei Alexandrescu,《C++ 编码规范

函数模板 operator* - Boost C++ 函数库
PrevUpHomeNext

函数模板 operator*

boost::units::operator*

提要

// In header: <boost/units/lambda.hpp>


template<typename System, typename Dim, typename Arg> 
  const multiply_typeof_helper< boost::units::absolute< boost::units::unit< Dim, System > >, boost::lambda::lambda_functor< Arg > >::type 
  operator*(const boost::units::absolute< boost::units::unit< Dim, System > > & a, 
            const boost::lambda::lambda_functor< Arg > & b);

描述

基于 <boost/lambda/detail/operators.hpp>,为 action absolute<unit<Dim, System> > * lambda_functor<Arg> 消除重载歧义。


PrevUpHomeNext