diff options
| author | a-bocharov <[email protected]> | 2022-02-10 16:51:42 +0300 | 
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:51:42 +0300 | 
| commit | cf85d9ecf529a02f41258fd39cbc1a1cee24525d (patch) | |
| tree | f3c4df7bf12865ad24e1101cf22dbb1f3c8a920b /util/generic/algorithm.h | |
| parent | 5e08c1c74c0a13a60738d33e4a9c4e0b21986b75 (diff) | |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'util/generic/algorithm.h')
| -rw-r--r-- | util/generic/algorithm.h | 18 | 
1 files changed, 9 insertions, 9 deletions
diff --git a/util/generic/algorithm.h b/util/generic/algorithm.h index badfb889933..05a6c093ec0 100644 --- a/util/generic/algorithm.h +++ b/util/generic/algorithm.h @@ -192,21 +192,21 @@ static inline auto FindIfPtr(C&& c, P pred) {  }  template <class C, class T> -static inline size_t FindIndex(C&& c, const T& x) { +static inline size_t FindIndex(C&& c, const T& x) {       using std::begin;      using std::end;      auto it = Find(begin(c), end(c), x);      return it == end(c) ? NPOS : (it - begin(c));  } -template <class C, class P> -static inline size_t FindIndexIf(C&& c, P p) { -    using std::begin; -    using std::end; -    auto it = FindIf(begin(c), end(c), p); -    return it == end(c) ? NPOS : (it - begin(c)); -} - +template <class C, class P>  +static inline size_t FindIndexIf(C&& c, P p) {  +    using std::begin;  +    using std::end;  +    auto it = FindIf(begin(c), end(c), p);  +    return it == end(c) ? NPOS : (it - begin(c));  +}  +   //EqualToOneOf(x, "apple", "orange") means (x == "apple" || x == "orange")  template <typename T>  inline bool EqualToOneOf(const T&) {  | 
