7 lines
149 B
Plaintext
7 lines
149 B
Plaintext
|
# -*- mode: snippet -*-
|
||
|
# name: replace_copy
|
||
|
# key: rpc
|
||
|
# --
|
||
|
std::replace_copy(std::begin(${1:container}), std::end($1), std::begin($1), $2, $3);
|
||
|
$0
|