All Classes Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
find.hpp
1 // The MIT License (MIT)
2 
3 // Copyright (c) 2012-2014 Danny Y., Rapptz
4 
5 // Permission is hereby granted, free of charge, to any person obtaining a copy of
6 // this software and associated documentation files (the "Software"), to deal in
7 // the Software without restriction, including without limitation the rights to
8 // use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9 // the Software, and to permit persons to whom the Software is furnished to do so,
10 // subject to the following conditions:
11 
12 // The above copyright notice and this permission notice shall be included in all
13 // copies or substantial portions of the Software.
14 
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17 // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18 // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19 // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20 // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 
22 #ifndef GEARS_STRING_FIND_HPP
23 #define GEARS_STRING_FIND_HPP
24 
25 #include "../meta/alias.hpp"
26 
27 namespace gears {
28 namespace string {
29 namespace string_find_detail {
30 template<typename T>
31 struct negator {
32  T pred;
33  negator(T t): pred(std::move(t)) {}
34  template<typename... Args>
35  auto operator()(Args&&... args) -> decltype(!pred(std::forward<Args>(args)...)) {
36  return !pred(std::forward<Args>(args)...);
37  }
38 };
39 
40 template<typename T>
41 using SizeType = typename meta::Unqualified<T>::size_type;
42 } // string_find_detail
43 
55 template<typename String, typename UnaryPredicate>
56 inline string_find_detail::SizeType<String> find_first_of(const String& str, UnaryPredicate&& pred) {
57  for(unsigned i = 0; i < str.size(); ++i) {
58  if(pred(str[i]))
59  return i;
60  }
61  return string_find_detail::SizeType<String>(-1); // npos
62 }
63 
75 template<typename String, typename UnaryPredicate>
76 inline string_find_detail::SizeType<String> find_first_not_of(const String& str, UnaryPredicate&& pred) {
77  return find_first_of(str, string_find_detail::negator<UnaryPredicate>(pred));
78 }
79 
91 template<typename String, typename UnaryPredicate>
92 inline string_find_detail::SizeType<String> find_last_of(const String& str, UnaryPredicate&& pred) {
93  for(unsigned i = str.size() - 1; i != 0; --i) {
94  if(pred(str[i]))
95  return i;
96  }
97  return string_find_detail::SizeType<String>(-1); // npos
98 }
99 
111 template<typename String, typename UnaryPredicate>
112 inline string_find_detail::SizeType<String> find_last_not_of(const String& str, UnaryPredicate&& pred) {
113  return find_last_of(str, string_find_detail::negator<UnaryPredicate>(pred));
114 }
115 } // string
116 } // gears
117 
118 #endif // GEARS_STRING_FIND_HPP