Files
emacs/lisp/yasnippet-snippets/snippets/c++-mode/shf
2020-12-05 21:29:49 +01:00

7 lines
129 B
Plaintext

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