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

7 lines
123 B
Plaintext

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