summaryrefslogtreecommitdiff
path: root/c++-mode/sth
blob: c8e6fb1dcd30a2ad209524e74b82b8212e3b3619 (plain)
1
2
3
4
5
6
# -*- mode: snippet -*-
# name: sort_heap
# key: sth
# --
std::sort_heap(std::begin(${1:container}), std::end($1));
$0