10 lines
148 B
Plaintext
10 lines
148 B
Plaintext
|
# -*- mode: snippet -*-
|
||
|
# name: copy_if
|
||
|
# key: cpi
|
||
|
# --
|
||
|
std::copy_if(std::begin(${1:container}), std::end($1), std::begin($2),
|
||
|
[]($3) {
|
||
|
$4
|
||
|
});
|
||
|
$0
|