(Emacs)~changed snippets

This commit is contained in:
2024-05-31 20:50:49 +05:30
parent 550eb59ea5
commit 7182d22050
4 changed files with 4 additions and 4 deletions

View File

@@ -2,4 +2,4 @@
# name: find
# key: find
# --
std::find(std::begin(${1:v}), std::end$(1), ${2:a});
std::find(std::begin(${1:v}), std::end($1), ${2:a})

View File

@@ -5,4 +5,4 @@
std::find_first_of(
std::begin(${1:a}), std::end($1),
std::begin(${2:b}), std::end($2)
);
)

View File

@@ -4,4 +4,4 @@
# --
std::find_if(std::begin(${1:v}), std::end($1), ${2:[](${3:auto x}) {
${4:return true;}
}});
}})

View File

@@ -4,4 +4,4 @@
# --
std::find_if_not(std::begin(${1:v}), std::end($1), ${2:[](${3:auto x}) {
${4:return true;}
}});
}})