summaryrefslogtreecommitdiff
path: root/c++-mode/nxp
blob: 46ece1e2cc1b8db46af6d7cda93dfc7ab9fea87c (plain)
1
2
3
4
5
6
7
8
# -*- mode: snippet -*-
# name: next_permutation
# key: nxp
# --
if (std::next_permutation(std::begin(${1:container}), std::end($1))) {
  $2
}
$0