summaryrefslogtreecommitdiff
path: root/c++-mode/eql
blob: a4f7cd590d629f795c6e4437b36436e5f8cbe0a7 (plain)
1
2
3
4
5
6
7
8
9
# -*- mode: snippet -*-
# name: equal
# key: eql
# contributor: Tommy BENNETT and Ludwig PACIFICI <ludwig@lud.cc>
# --
if (std::equal(std::begin(${1:container}), std::end($1), std::begin($2))) {
  $3
}
$0