8 lines
197 B
Plaintext
8 lines
197 B
Plaintext
# -*- mode: snippet -*-
|
|
# name: accumulate_lambda
|
|
# key: accl
|
|
# --
|
|
std::accumulate(${1:v}.begin(), $1.end(), ${2:0}, [${3:}] (${4:auto} const& ${5:r}, ${6:auto} const& ${7:v}) {
|
|
$0
|
|
});
|