| 355 | using Pinning<T>::Pinning; |
| 356 | template<typename Arg> |
| 357 | constexpr auto haystackView(Arg &&a) const noexcept -> decltype(this->view(std::forward<Arg>(a))) |
| 358 | { |
| 359 | return this->view(std::forward<Arg>(a)); |
| 360 | } |
| 361 | }; |
| 362 | |
| 363 | // The Base of a QStringTokenizer is QStringTokenizerBase for the views |