summaryrefslogtreecommitdiff
path: root/c++-mode/ihu
blob: 765508e6778d47104ad5d8cafa845288636278cc (plain)
1
2
3
4
5
6
7
8
9
# -*- mode: snippet -*-
# name: is_heap_until
# key: ihu
# --
auto pos = std::is_heap_until(std::begin(${1:container}), std::end($1));
if (pos != std::end($1)) {
  $2
}
$0