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

8 lines
145 B
Plaintext
Raw Normal View History

2017-12-21 17:29:29 +01:00
# -*- mode: snippet -*-
# name: remove_copy
# key: rmc
# --
std::remove_copy(std::begin(${1:container}), std::end($1),
std::begin($1), $2);
$0