summaryrefslogtreecommitdiff
path: root/c++-mode/spt
blob: 40ef2c8827f07fdaa95f559d2f07ffc40d5ce96c (plain)
1
2
3
4
5
6
7
8
9
10
# -*- mode: snippet -*-
# name: stable_partition
# key: spt
# --
auto pos = std::stable_partition(std::begin(${1:container}), std::end($1), []($2) {
  $3});
if (pos != std::end($1)) {
  $4
}
$0