コード例 #1
0
ファイル: accumulator.hpp プロジェクト: HerraHuu/stan
 /**
  * Return the sum of the accumulated values.
  *
  * @return Sum of accumulated values.
  */
 T sum() {
   using math::sum;
   return sum(buf_);
 }