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