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