9 lines
158 B
Plaintext
9 lines
158 B
Plaintext
|
# -*- mode: snippet -*-
|
||
|
# name: copy
|
||
|
# key: oit
|
||
|
# --
|
||
|
std::copy(std::begin(${1:container}), std::end($1), std::ostream_iterator<$2>{
|
||
|
%\istd::cout, "$3"
|
||
|
});
|
||
|
$0
|