9 lines
143 B
Plaintext
9 lines
143 B
Plaintext
|
# -*- mode: snippet -*-
|
||
|
# name: count_if
|
||
|
# key: cni
|
||
|
# --
|
||
|
auto n = std::count_if(std::begin(${1:container}), std::end($1), []($2) {
|
||
|
$3
|
||
|
});
|
||
|
$0
|