Boost C++ 库

...世界上最受尊敬和专业设计的 C++ 库项目之一。 Herb SutterAndrei Alexandrescu, 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::unit< Dim, System >, boost::lambda::lambda_functor< Arg > >::type 
  operator*(const boost::units::unit< Dim, System > & a, 
            const boost::lambda::lambda_functor< Arg > & b);

描述

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


PrevUpHomeNext