From 04ef7136a5f764cd170a722cef730f7263f30c01 Mon Sep 17 00:00:00 2001 From: Ludwig PACIFICI Date: Sat, 15 Oct 2016 10:13:04 +0100 Subject: [PATCH] Removed contributor tag --- c++-mode/acl | 1 - c++-mode/acm | 1 - c++-mode/ajf | 1 - c++-mode/alo | 1 - c++-mode/ano | 1 - c++-mode/cni | 1 - c++-mode/cnt | 1 - c++-mode/cpb | 1 - c++-mode/cpi | 1 - c++-mode/cpn | 1 - c++-mode/cpy | 1 - c++-mode/eql | 1 - c++-mode/erm | 1 - c++-mode/ffo | 1 - c++-mode/fil | 1 - c++-mode/fin | 1 - c++-mode/fln | 1 - c++-mode/fnd | 1 - c++-mode/fne | 1 - c++-mode/fni | 1 - c++-mode/fre | 1 - c++-mode/gnn | 1 - c++-mode/gnr | 1 - c++-mode/ihp | 1 - c++-mode/ihu | 1 - c++-mode/ipr | 1 - c++-mode/ipt | 1 - c++-mode/iss | 1 - c++-mode/isu | 1 - c++-mode/ita | 1 - c++-mode/ltr | 1 - c++-mode/lwr | 1 - c++-mode/lxc | 1 - c++-mode/mkh | 1 - c++-mode/mme | 1 - c++-mode/mne | 1 - c++-mode/mpb | 1 - c++-mode/mrg | 1 - c++-mode/msm | 1 - c++-mode/mxe | 1 - c++-mode/nno | 1 - c++-mode/nth | 1 - c++-mode/nxp | 1 - c++-mode/oit | 1 - c++-mode/phh | 1 - c++-mode/ppt | 1 - c++-mode/prp | 1 - c++-mode/psc | 1 - c++-mode/pst | 1 - c++-mode/ptc | 1 - c++-mode/ptn | 1 - c++-mode/rci | 1 - c++-mode/rmc | 1 - c++-mode/rmf | 1 - c++-mode/rmi | 1 - c++-mode/rmv | 1 - c++-mode/rpc | 1 - c++-mode/rpi | 1 - c++-mode/rpl | 1 - c++-mode/rtc | 1 - c++-mode/rte | 1 - c++-mode/rvc | 1 - c++-mode/rvr | 1 - c++-mode/shf | 1 - c++-mode/spt | 1 - c++-mode/srh | 1 - c++-mode/srn | 1 - c++-mode/srt | 1 - c++-mode/sth | 1 - c++-mode/sti | 1 - c++-mode/sto | 1 - c++-mode/sts | 1 - c++-mode/stv | 1 - c++-mode/swr | 1 - c++-mode/tfm | 1 - c++-mode/trm | 1 - c++-mode/ucp | 1 - c++-mode/upr | 1 - c++-mode/uqe | 1 - 79 files changed, 79 deletions(-) diff --git a/c++-mode/acl b/c++-mode/acl index c7c9014..9d5d042 100644 --- a/c++-mode/acl +++ b/c++-mode/acl @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: accumulate # key: acl -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- auto sum = std::accumulate(std::begin(${1:container}), std::end($1), 0, [](int total, $2) { $3 diff --git a/c++-mode/acm b/c++-mode/acm index b4c445b..6e885bc 100644 --- a/c++-mode/acm +++ b/c++-mode/acm @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: accumulate # key: acm -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- auto sum = std::accumulate(std::begin(${1:container}), std::end($1), 0); $0 diff --git a/c++-mode/ajf b/c++-mode/ajf index 5f206a9..105419e 100644 --- a/c++-mode/ajf +++ b/c++-mode/ajf @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: adjacent_find # key: ajf -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- auto pos = std::adjacent_find(std::begin(${1:container}), std::end($1)); if (pos != std::end($1)) { diff --git a/c++-mode/alo b/c++-mode/alo index 0fecd24..f16ad54 100644 --- a/c++-mode/alo +++ b/c++-mode/alo @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: all_of # key: alo -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- if (std::all_of(std::begin(${1:container}), std::end($1), []($2) { $3 diff --git a/c++-mode/ano b/c++-mode/ano index d4c70d5..36e017f 100644 --- a/c++-mode/ano +++ b/c++-mode/ano @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: any_of # key: ano -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- if (std::any_of(std::begin(${1:container}), std::end($1), []($2) { $3 diff --git a/c++-mode/cni b/c++-mode/cni index 815c9bd..e8694d2 100644 --- a/c++-mode/cni +++ b/c++-mode/cni @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: count_if # key: cni -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- auto n = std::count_if(std::begin(${1:container}), std::end($1), []($2) { $3 diff --git a/c++-mode/cnt b/c++-mode/cnt index 8232916..0004798 100644 --- a/c++-mode/cnt +++ b/c++-mode/cnt @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: count # key: cnt -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- auto n = std::count(std::begin(${1:container}), std::end($1), $2); $0 diff --git a/c++-mode/cpb b/c++-mode/cpb index 58b1fda..0ca826c 100644 --- a/c++-mode/cpb +++ b/c++-mode/cpb @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: copy_backward # key: cpb -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::copy_backward(std::begin(${1:container}), std::end($1), std::end($1)); $0 diff --git a/c++-mode/cpi b/c++-mode/cpi index 1d75088..4c17712 100644 --- a/c++-mode/cpi +++ b/c++-mode/cpi @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: copy_if # key: cpi -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::copy_if(std::begin(${1:container}), std::end($1), std::begin($2), []($3) { diff --git a/c++-mode/cpn b/c++-mode/cpn index e8a95a2..a96996e 100644 --- a/c++-mode/cpn +++ b/c++-mode/cpn @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: copy_n # key: cpn -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::copy_n(std::begin(${1:container}), $2, std::end($1)); $0 diff --git a/c++-mode/cpy b/c++-mode/cpy index a6f3880..14b36b6 100644 --- a/c++-mode/cpy +++ b/c++-mode/cpy @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: copy # key: cpy -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::copy(std::begin(${1:container}), std::end($1), std::begin($2)); $0 diff --git a/c++-mode/eql b/c++-mode/eql index a4f7cd5..01368cc 100644 --- a/c++-mode/eql +++ b/c++-mode/eql @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: equal # key: eql -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- if (std::equal(std::begin(${1:container}), std::end($1), std::begin($2))) { $3 diff --git a/c++-mode/erm b/c++-mode/erm index e2dd8ea..16b8f36 100644 --- a/c++-mode/erm +++ b/c++-mode/erm @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: remove # key: erm -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- ${1:container}.erase(std::remove(std::begin($1), std::end($1), $2), std::end($1)); $0 diff --git a/c++-mode/ffo b/c++-mode/ffo index f87ebbb..36c6894 100644 --- a/c++-mode/ffo +++ b/c++-mode/ffo @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: find_first_of # key: ffo -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- auto pos = std::find_first_of(std::begin(${1:container}), std::end($1), std::begin($2), std::end($3)); diff --git a/c++-mode/fil b/c++-mode/fil index 8fc49e9..12d065a 100644 --- a/c++-mode/fil +++ b/c++-mode/fil @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: fill # key: fil -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::fill(std::begin(${1:container}), std::end($1), $2); $0 diff --git a/c++-mode/fin b/c++-mode/fin index 0f495af..41eaf6c 100644 --- a/c++-mode/fin +++ b/c++-mode/fin @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: find_if_not # key: fin -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- auto pos = std::find_if_not(std::begin(${1:container}), std::end($1),[]($2) { $3 diff --git a/c++-mode/fln b/c++-mode/fln index ffe05b0..ef2028a 100644 --- a/c++-mode/fln +++ b/c++-mode/fln @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: fill_n # key: fln -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::fill_n(std::begin(${1:container}), $2, $3); $0 diff --git a/c++-mode/fnd b/c++-mode/fnd index 6141036..6009138 100644 --- a/c++-mode/fnd +++ b/c++-mode/fnd @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: find # key: fnd -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- auto pos = std::find(std::begin(${1:container}), std::end($1), $2); if (pos != std::end($1)) { diff --git a/c++-mode/fne b/c++-mode/fne index 5054da0..7f27e7a 100644 --- a/c++-mode/fne +++ b/c++-mode/fne @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: find_end # key: fne -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- auto pos = std::find_std::end(std::begin(${1:container}), std::end($1), std::begin($2), std::end($3)); diff --git a/c++-mode/fni b/c++-mode/fni index f06925c..de0a6e8 100644 --- a/c++-mode/fni +++ b/c++-mode/fni @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: find_if # key: fni -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- auto pos = std::find_if(std::begin(${1:container}), std::end($1), []($2) { $3 diff --git a/c++-mode/fre b/c++-mode/fre index 4ec2ed5..09d1a78 100644 --- a/c++-mode/fre +++ b/c++-mode/fre @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: for_each # key: fre -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::for_each(std::begin(${1:container}), std::end($1), []($2) { $3 diff --git a/c++-mode/gnn b/c++-mode/gnn index 25825dd..b3b74b5 100644 --- a/c++-mode/gnn +++ b/c++-mode/gnn @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: generate_n # key: gnn -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::generate_n(std::begin(${1:container}), $2, []($3) { $4 diff --git a/c++-mode/gnr b/c++-mode/gnr index 387916f..e48e7c1 100644 --- a/c++-mode/gnr +++ b/c++-mode/gnr @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: generate # key: gnr -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::generate(std::begin(${1:container}), std::end($1), []($2) { $3 diff --git a/c++-mode/ihp b/c++-mode/ihp index 0c55ca1..bf975b9 100644 --- a/c++-mode/ihp +++ b/c++-mode/ihp @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: is_heap # key: ihp -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- if (std::is_heap(std::begin(${1:container}), std::end($1))) { $2 diff --git a/c++-mode/ihu b/c++-mode/ihu index 702fbf7..765508e 100644 --- a/c++-mode/ihu +++ b/c++-mode/ihu @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: is_heap_until # key: ihu -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- auto pos = std::is_heap_until(std::begin(${1:container}), std::end($1)); if (pos != std::end($1)) { diff --git a/c++-mode/ipr b/c++-mode/ipr index a08030f..c7ffd71 100644 --- a/c++-mode/ipr +++ b/c++-mode/ipr @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: is_permutation # key: ipr -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- if (std::is_permutation(std::begin(${1:container}), std::end($1), std::begin($2))) { $3 diff --git a/c++-mode/ipt b/c++-mode/ipt index bca9f6b..b7a1509 100644 --- a/c++-mode/ipt +++ b/c++-mode/ipt @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: is_partitioned # key: ipt -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- if (std::is_partitioned(std::begin(${1:container}), std::end($1), []($2) { $3 diff --git a/c++-mode/iss b/c++-mode/iss index 046decd..11c4cf0 100644 --- a/c++-mode/iss +++ b/c++-mode/iss @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: is_sorted # key: iss -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- if (std::is_sorted(std::begin(${1:container}), std::end($1))) { $2 diff --git a/c++-mode/isu b/c++-mode/isu index 28ccddf..0c443ff 100644 --- a/c++-mode/isu +++ b/c++-mode/isu @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: is_sorted_until # key: isu -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- auto pos = std::is_sorted_until(std::begin(${1:container}), std::end($1)); if (pos != std::end($1)) { diff --git a/c++-mode/ita b/c++-mode/ita index 862c011..45da1bc 100644 --- a/c++-mode/ita +++ b/c++-mode/ita @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: iota # key: ita -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::iota(std::begin(${1:container}), std::end($1), $2); $0 diff --git a/c++-mode/ltr b/c++-mode/ltr index fd0d7d3..1aec200 100644 --- a/c++-mode/ltr +++ b/c++-mode/ltr @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: transform # key: ltr -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- ${1:container}.erase(0, $1.find_first_not_of(" \t\n\r")); $0 diff --git a/c++-mode/lwr b/c++-mode/lwr index 893e833..4736a05 100644 --- a/c++-mode/lwr +++ b/c++-mode/lwr @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: transform # key: lwr -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::transform(std::begin(${1:container}), std::end($1), std::begin($1), [](char c) { return std::tolower(c);}); diff --git a/c++-mode/lxc b/c++-mode/lxc index 82cc883..d60c1e5 100644 --- a/c++-mode/lxc +++ b/c++-mode/lxc @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: lexigraphical_compare # key: lxc -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- if (std::lexigraphical_compare(std::begin(${1:container}), std::end($1), std::begin($2), std::end($3)) { diff --git a/c++-mode/mkh b/c++-mode/mkh index f225c3e..9d50614 100644 --- a/c++-mode/mkh +++ b/c++-mode/mkh @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: make_heap # key: mkh -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::make_heap(std::begin(${1:container}), std::end($1)); $0 diff --git a/c++-mode/mme b/c++-mode/mme index e350c66..e40fa07 100644 --- a/c++-mode/mme +++ b/c++-mode/mme @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: minmax_element # key: mme -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- auto minmax = std::minmax_element(std::begin(${1:container}), std::end($1)); $0 diff --git a/c++-mode/mne b/c++-mode/mne index 61f0171..0491705 100644 --- a/c++-mode/mne +++ b/c++-mode/mne @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: min_element # key: mne -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- auto pos = std::min_element(std::begin(${1:container}), std::end($1)); $0 diff --git a/c++-mode/mpb b/c++-mode/mpb index c097841..4ca0b09 100644 --- a/c++-mode/mpb +++ b/c++-mode/mpb @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: move_backward # key: mpb -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::move_backward(std::begin(${1:container}), std::end($1), std::end($1)); $0 diff --git a/c++-mode/mrg b/c++-mode/mrg index fff86fd..d6bbc71 100644 --- a/c++-mode/mrg +++ b/c++-mode/mrg @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: merge # key: mrg -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::merge(std::begin(${1:container}), std::end($1), std::begin($2), std::end($3), std::begin($4)); diff --git a/c++-mode/msm b/c++-mode/msm index 5cf856d..6c729f6 100644 --- a/c++-mode/msm +++ b/c++-mode/msm @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: mismatch # key: msm -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- auto values = std::mismatch(std::begin(${1:container}), std::end($1), std::begin($1)); if (values.first == std::end($1)) { diff --git a/c++-mode/mxe b/c++-mode/mxe index 49f058f..a2ffea4 100644 --- a/c++-mode/mxe +++ b/c++-mode/mxe @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: max_element # key: mxe -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- auto pos = std::max_element(std::begin(${1:container}), std::end($1)); $0 diff --git a/c++-mode/nno b/c++-mode/nno index 1dc76f9..4372782 100644 --- a/c++-mode/nno +++ b/c++-mode/nno @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: none_of # key: nno -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- if (std::none_of(std::begin(${1:container}), std::end($1), []($2) { $3 diff --git a/c++-mode/nth b/c++-mode/nth index beec2a0..e0c0fba 100644 --- a/c++-mode/nth +++ b/c++-mode/nth @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: nth_element # key: nth -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::nth_element(std::begin(${1:container}), std::end($1), std::end($1)); $0 diff --git a/c++-mode/nxp b/c++-mode/nxp index 7ce5dae..46ece1e 100644 --- a/c++-mode/nxp +++ b/c++-mode/nxp @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: next_permutation # key: nxp -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- if (std::next_permutation(std::begin(${1:container}), std::end($1))) { $2 diff --git a/c++-mode/oit b/c++-mode/oit index b6d7e5d..74ad7e5 100644 --- a/c++-mode/oit +++ b/c++-mode/oit @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: copy # key: oit -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::copy(std::begin(${1:container}), std::end($1), std::ostream_iterator<$2>{ %\istd::cout, "$3" diff --git a/c++-mode/phh b/c++-mode/phh index 200684b..4527265 100644 --- a/c++-mode/phh +++ b/c++-mode/phh @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: push_heap # key: phh -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::push_heap(std::begin(${1:container}), std::end($1)); $0 diff --git a/c++-mode/ppt b/c++-mode/ppt index 27fae51..fc05481 100644 --- a/c++-mode/ppt +++ b/c++-mode/ppt @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: partition_point # key: ppt -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- auto pos = std::partition_point(std::begin(${1:container}), std::end($1), []($2) { $3 diff --git a/c++-mode/prp b/c++-mode/prp index 13c3793..a94f0e9 100644 --- a/c++-mode/prp +++ b/c++-mode/prp @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: prev_permutation # key: prp -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- if (std::prev_permutation(std::begin(${1:container}), std::end($1))) { $2 diff --git a/c++-mode/psc b/c++-mode/psc index 9549968..ad8ff42 100644 --- a/c++-mode/psc +++ b/c++-mode/psc @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: partial_sort_copy # key: psc -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::partial_sort_copy(std::begin(${1:container}), std::end($1), std::begin($2), std::end($3)); diff --git a/c++-mode/pst b/c++-mode/pst index 545485e..e7287e2 100644 --- a/c++-mode/pst +++ b/c++-mode/pst @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: partial_sort # key: pst -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::partial_sort(std::begin(${1:container}), std::end($1), std::end($1)); $0 diff --git a/c++-mode/ptc b/c++-mode/ptc index 5ff3dc6..dcd7e38 100644 --- a/c++-mode/ptc +++ b/c++-mode/ptc @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: partition_copy # key: ptc -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::partition_copy(std::begin(${1:container}), std::end($1), std::begin($2), std::end($3)); diff --git a/c++-mode/ptn b/c++-mode/ptn index af9775e..44f3c42 100644 --- a/c++-mode/ptn +++ b/c++-mode/ptn @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: partition # key: ptn -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- auto pos = std::partition(std::begin(${1:container}), std::end($1), []($2) { $3 diff --git a/c++-mode/rci b/c++-mode/rci index ad473b5..1149255 100644 --- a/c++-mode/rci +++ b/c++-mode/rci @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: replace_copy_if # key: rci -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::replace_copy_if(std::begin(${1:container}), std::end($1), std::begin($1), []($2) { diff --git a/c++-mode/rmc b/c++-mode/rmc index a03893a..681c10b 100644 --- a/c++-mode/rmc +++ b/c++-mode/rmc @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: remove_copy # key: rmc -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::remove_copy(std::begin(${1:container}), std::end($1), std::begin($1), $2); diff --git a/c++-mode/rmf b/c++-mode/rmf index caf73bd..c1713ff 100644 --- a/c++-mode/rmf +++ b/c++-mode/rmf @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: remove_copy_if # key: rmf -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::remove_copy_if(std::begin(${1:container}), std::end($1), std::begin($1), []($2) { diff --git a/c++-mode/rmi b/c++-mode/rmi index 7cb47ab..c78f926 100644 --- a/c++-mode/rmi +++ b/c++-mode/rmi @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: remove_if # key: rmi -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- auto pos = std::remove_if(std::begin(${1:container}), std::end($1), []($2) { $3 diff --git a/c++-mode/rmv b/c++-mode/rmv index d178d47..01fa9f9 100644 --- a/c++-mode/rmv +++ b/c++-mode/rmv @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: remove # key: rmv -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- auto pos = std::remove(std::begin(${1:container}), std::end($1), $2); if (pos != std::end($1)) { diff --git a/c++-mode/rpc b/c++-mode/rpc index 01fb570..a4116f1 100644 --- a/c++-mode/rpc +++ b/c++-mode/rpc @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: replace_copy # key: rpc -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::replace_copy(std::begin(${1:container}), std::end($1), std::begin($1), $2, $3); $0 diff --git a/c++-mode/rpi b/c++-mode/rpi index 9922c66..bc96c47 100644 --- a/c++-mode/rpi +++ b/c++-mode/rpi @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: replace_if # key: rpi -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::replace_if(std::begin(${1:container}), std::end($1), []($2) { $3 diff --git a/c++-mode/rpl b/c++-mode/rpl index 9993d98..9badf4b 100644 --- a/c++-mode/rpl +++ b/c++-mode/rpl @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: replace # key: rpl -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::replace(std::begin(${1:container}), std::end($1), $2, $3); $0 diff --git a/c++-mode/rtc b/c++-mode/rtc index 84e817c..373f85d 100644 --- a/c++-mode/rtc +++ b/c++-mode/rtc @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: rotate_copy # key: rtc -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::rotate_copy(std::begin(${1:container}), std::begin($2), std::end($1), std::begin($3)); diff --git a/c++-mode/rte b/c++-mode/rte index b6be336..a098782 100644 --- a/c++-mode/rte +++ b/c++-mode/rte @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: rotate # key: rte -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::rotate(std::begin(${1:container}), std::begin($2), std::end($1)); $0 diff --git a/c++-mode/rvc b/c++-mode/rvc index b8a3a17..2e4618d 100644 --- a/c++-mode/rvc +++ b/c++-mode/rvc @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: reverse_copy # key: rvc -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::reverse_copy(std::begin(${1:container}), std::end($1), std::begin($2)); $0 diff --git a/c++-mode/rvr b/c++-mode/rvr index 81c9037..71d00c5 100644 --- a/c++-mode/rvr +++ b/c++-mode/rvr @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: reverse # key: rvr -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::reverse(std::begin(${1:container}), std::end($1)); $0 diff --git a/c++-mode/shf b/c++-mode/shf index 3ad42b7..ef7adb1 100644 --- a/c++-mode/shf +++ b/c++-mode/shf @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: random_shuffle # key: shf -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::random_shuffle(std::begin(${1:container}), std::end($1)); $0 diff --git a/c++-mode/spt b/c++-mode/spt index 55c0808..40ef2c8 100644 --- a/c++-mode/spt +++ b/c++-mode/spt @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: stable_partition # key: spt -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- auto pos = std::stable_partition(std::begin(${1:container}), std::end($1), []($2) { $3}); diff --git a/c++-mode/srh b/c++-mode/srh index 12fbbe7..2c9df59 100644 --- a/c++-mode/srh +++ b/c++-mode/srh @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: search # key: srh -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- auto pos = std::search(std::begin(${1:container}), std::end($1), std::begin($2), std::end($3)); diff --git a/c++-mode/srn b/c++-mode/srn index 1fca802..c7d929d 100644 --- a/c++-mode/srn +++ b/c++-mode/srn @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: search_n # key: srn -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- auto pos = std::search_n(std::begin(${1:container}), std::end($1),$2,$3); if (pos != std::end($1)) { diff --git a/c++-mode/srt b/c++-mode/srt index 7d0c60d..8d44cfd 100644 --- a/c++-mode/srt +++ b/c++-mode/srt @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: sort # key: srt -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::sort(std::begin(${1:container}), std::end($1)); $0 diff --git a/c++-mode/sth b/c++-mode/sth index e2a5bff..c8e6fb1 100644 --- a/c++-mode/sth +++ b/c++-mode/sth @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: sort_heap # key: sth -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::sort_heap(std::begin(${1:container}), std::end($1)); $0 diff --git a/c++-mode/sti b/c++-mode/sti index 27cf249..37a2182 100644 --- a/c++-mode/sti +++ b/c++-mode/sti @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: cin # key: sti -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::cin >> $0 diff --git a/c++-mode/sto b/c++-mode/sto index 39d452a..30db50b 100644 --- a/c++-mode/sto +++ b/c++-mode/sto @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: cout # key: sto -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::cout << $0 diff --git a/c++-mode/sts b/c++-mode/sts index fcf3de3..a5c4d12 100644 --- a/c++-mode/sts +++ b/c++-mode/sts @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: stable_sort # key: sts -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::stable_sort(std::begin(${1:container}), std::end($1)); $0 diff --git a/c++-mode/stv b/c++-mode/stv index 994ade4..1354c3d 100644 --- a/c++-mode/stv +++ b/c++-mode/stv @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: vector # key: stv -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::vector<$2> $3 $0 diff --git a/c++-mode/swr b/c++-mode/swr index bb1ec45..9357578 100644 --- a/c++-mode/swr +++ b/c++-mode/swr @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: swap_ranges # key: swr -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::swap_ranges(std::begin(${1:container}), std::end($1), std::begin($2)); $0 diff --git a/c++-mode/tfm b/c++-mode/tfm index c81aee9..12d4881 100644 --- a/c++-mode/tfm +++ b/c++-mode/tfm @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: transform # key: tfm -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::transform(std::begin(${1:container}), std::end($1), std::begin($1), []($2) { diff --git a/c++-mode/trm b/c++-mode/trm index e3fe028..d7ffea1 100644 --- a/c++-mode/trm +++ b/c++-mode/trm @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: generate_n # key: trm -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- ${1:container}.erase($1.find_last_not_of(" \t\n\r") + 1); $0 diff --git a/c++-mode/ucp b/c++-mode/ucp index 5b411f9..1dc71ff 100644 --- a/c++-mode/ucp +++ b/c++-mode/ucp @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: unique_copy # key: ucp -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::unique_copy(std::begin(${1:container}), std::end($1), std::ostream_iterator(std::cout, "\n")); diff --git a/c++-mode/upr b/c++-mode/upr index fd470cf..8c9e0f8 100644 --- a/c++-mode/upr +++ b/c++-mode/upr @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: transform # key: upr -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- std::transform(std::begin(${1:container}), std::end($1), std::begin($1), [](char c) { return std::toupper(c); diff --git a/c++-mode/uqe b/c++-mode/uqe index f1d994e..c35ff16 100644 --- a/c++-mode/uqe +++ b/c++-mode/uqe @@ -1,7 +1,6 @@ # -*- mode: snippet -*- # name: unique # key: uqe -# contributor: Tommy BENNETT and Ludwig PACIFICI # -- auto pos = std::unique(std::begin(${1:container}), std::end($1)); $0