1 // Components for manipulating non-owning sequences of characters -*- C++ -*-
3 // Copyright (C) 2013-2017 Free Software Foundation, Inc.
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // Under Section 7 of GPL version 3, you are granted additional
17 // permissions described in the GCC Runtime Library Exception, version
18 // 3.1, as published by the Free Software Foundation.
20 // You should have received a copy of the GNU General Public License and
21 // a copy of the GCC Runtime Library Exception along with this program;
22 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 // <http://www.gnu.org/licenses/>.
25 /** @file include/bits/string_view.tcc
26 * This is an internal header file, included by other library headers.
27 * Do not attempt to use it directly. @headername{string_view}
31 // N3762 basic_string_view library
34 #ifndef _GLIBCXX_STRING_VIEW_TCC
35 #define _GLIBCXX_STRING_VIEW_TCC 1
37 #pragma GCC system_header
39 #if __cplusplus >= 201703L
41 namespace std _GLIBCXX_VISIBILITY(default)
43 _GLIBCXX_BEGIN_NAMESPACE_VERSION
45 template<typename _CharT, typename _Traits>
46 constexpr typename basic_string_view<_CharT, _Traits>::size_type
47 basic_string_view<_CharT, _Traits>::
48 find(const _CharT* __str, size_type __pos, size_type __n) const noexcept
50 __glibcxx_requires_string_len(__str, __n);
53 return __pos <= this->_M_len ? __pos : npos;
55 if (__n <= this->_M_len)
57 for (; __pos <= this->_M_len - __n; ++__pos)
58 if (traits_type::eq(this->_M_str[__pos], __str[0])
59 && traits_type::compare(this->_M_str + __pos + 1,
60 __str + 1, __n - 1) == 0)
66 template<typename _CharT, typename _Traits>
67 constexpr typename basic_string_view<_CharT, _Traits>::size_type
68 basic_string_view<_CharT, _Traits>::
69 find(_CharT __c, size_type __pos) const noexcept
71 size_type __ret = npos;
72 if (__pos < this->_M_len)
74 const size_type __n = this->_M_len - __pos;
75 const _CharT* __p = traits_type::find(this->_M_str + __pos, __n, __c);
77 __ret = __p - this->_M_str;
82 template<typename _CharT, typename _Traits>
83 constexpr typename basic_string_view<_CharT, _Traits>::size_type
84 basic_string_view<_CharT, _Traits>::
85 rfind(const _CharT* __str, size_type __pos, size_type __n) const noexcept
87 __glibcxx_requires_string_len(__str, __n);
89 if (__n <= this->_M_len)
91 __pos = std::min(size_type(this->_M_len - __n), __pos);
94 if (traits_type::compare(this->_M_str + __pos, __str, __n) == 0)
102 template<typename _CharT, typename _Traits>
103 constexpr typename basic_string_view<_CharT, _Traits>::size_type
104 basic_string_view<_CharT, _Traits>::
105 rfind(_CharT __c, size_type __pos) const noexcept
107 size_type __size = this->_M_len;
110 if (--__size > __pos)
112 for (++__size; __size-- > 0; )
113 if (traits_type::eq(this->_M_str[__size], __c))
119 template<typename _CharT, typename _Traits>
120 constexpr typename basic_string_view<_CharT, _Traits>::size_type
121 basic_string_view<_CharT, _Traits>::
122 find_first_of(const _CharT* __str, size_type __pos, size_type __n) const
124 __glibcxx_requires_string_len(__str, __n);
125 for (; __n && __pos < this->_M_len; ++__pos)
127 const _CharT* __p = traits_type::find(__str, __n,
128 this->_M_str[__pos]);
135 template<typename _CharT, typename _Traits>
136 constexpr typename basic_string_view<_CharT, _Traits>::size_type
137 basic_string_view<_CharT, _Traits>::
138 find_last_of(const _CharT* __str, size_type __pos, size_type __n) const
140 __glibcxx_requires_string_len(__str, __n);
141 size_type __size = this->size();
144 if (--__size > __pos)
148 if (traits_type::find(__str, __n, this->_M_str[__size]))
151 while (__size-- != 0);
156 template<typename _CharT, typename _Traits>
157 constexpr typename basic_string_view<_CharT, _Traits>::size_type
158 basic_string_view<_CharT, _Traits>::
159 find_first_not_of(const _CharT* __str, size_type __pos, size_type __n) const
161 __glibcxx_requires_string_len(__str, __n);
162 for (; __pos < this->_M_len; ++__pos)
163 if (!traits_type::find(__str, __n, this->_M_str[__pos]))
168 template<typename _CharT, typename _Traits>
169 constexpr typename basic_string_view<_CharT, _Traits>::size_type
170 basic_string_view<_CharT, _Traits>::
171 find_first_not_of(_CharT __c, size_type __pos) const noexcept
173 for (; __pos < this->_M_len; ++__pos)
174 if (!traits_type::eq(this->_M_str[__pos], __c))
179 template<typename _CharT, typename _Traits>
180 constexpr typename basic_string_view<_CharT, _Traits>::size_type
181 basic_string_view<_CharT, _Traits>::
182 find_last_not_of(const _CharT* __str, size_type __pos, size_type __n) const
184 __glibcxx_requires_string_len(__str, __n);
185 size_type __size = this->_M_len;
188 if (--__size > __pos)
192 if (!traits_type::find(__str, __n, this->_M_str[__size]))
200 template<typename _CharT, typename _Traits>
201 constexpr typename basic_string_view<_CharT, _Traits>::size_type
202 basic_string_view<_CharT, _Traits>::
203 find_last_not_of(_CharT __c, size_type __pos) const noexcept
205 size_type __size = this->_M_len;
208 if (--__size > __pos)
212 if (!traits_type::eq(this->_M_str[__size], __c))
220 _GLIBCXX_END_NAMESPACE_VERSION
223 #endif // __cplusplus <= 201402L
225 #endif // _GLIBCXX_STRING_VIEW_TCC