DEBSOURCES
Skip Quicknav
sources / yasnippet-snippets / 0~git20161123-1 / c%2B%2B-mode / cni
12345678
# -*- mode: snippet -*- # name: count_if # key: cni # -- auto n = std::count_if(std::begin(${1:container}), std::end($1), []($2) { $3 }); $0