dotfiles/.emacs.d/snippets/c++-mode/rpi

9 lines
140 B
Plaintext
Raw Normal View History

2017-12-21 17:29:29 +01:00
# -*- mode: snippet -*-
# name: replace_if
# key: rpi
# --
std::replace_if(std::begin(${1:container}), std::end($1), []($2) {
$3
}, $4);
$0