Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 1.02 KB

numeric.md

File metadata and controls

13 lines (9 loc) · 1.02 KB

#numeric

<numeric> ヘッダは数値のシーケンスの処理に特化したアルゴリズムを定義する。

accumulate 1つのシーケンスの任意の範囲の値を足し合わせる
inner_product 2つのシーケンスの任意の範囲の値の内積を計算する
partial_sum 1つのシーケンスの任意の範囲の値の部分和を計算する
adjacent_difference 1つのシーケンスの任意の範囲の隣接する値間の差を計算する
iota 指定された値から始まる整数列を生成する。(C++11)