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

8 lines
157 B
Plaintext
Raw Normal View History

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