dotfiles/.emacs.d/snippets/c++-mode/ipt

11 lines
159 B
Plaintext

# -*- mode: snippet -*-
# name: is_partitioned
# key: ipt
# --
if (std::is_partitioned(std::begin(${1:container}), std::end($1), []($2) {
$3
})) {
$4
}
$0