# -*- mode: snippet -*-
# name: remove_copy
# key: rmc
# --
std::remove_copy(std::begin(${1:container}), std::end($1),
std::begin($1), $2);
$0