Klimi's new dotfiles with stow.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

9 satır
168 B

# -*- mode: snippet -*-
# name: search_n
# key: srn
# --
auto pos = std::search_n(std::begin(${1:container}), std::end($1),$2,$3);
if (pos != std::end($1)) {
$4
}
$0