2 //===----------------------------------------------------------------------===//
4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // See https://llvm.org/LICENSE.txt for license information.
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
8 //===----------------------------------------------------------------------===//
10 #ifndef _LIBCPP_EXPERIMENTAL_REGEX
11 #define _LIBCPP_EXPERIMENTAL_REGEX
14 experimental/regex synopsis
18 namespace experimental {
19 inline namespace fundamentals_v1 {
22 template <class BidirectionalIterator>
24 std::match_results<BidirectionalIterator,
25 polymorphic_allocator<sub_match<BidirectionalIterator>>>;
27 typedef match_results<const char*> cmatch;
28 typedef match_results<const wchar_t*> wcmatch;
29 typedef match_results<string::const_iterator> smatch;
30 typedef match_results<wstring::const_iterator> wsmatch;
33 } // namespace fundamentals_v1
34 } // namespace experimental
39 #include <__assert> // all public C++ headers provide the assertion handler
40 #include <experimental/__config>
41 #include <experimental/memory_resource>
42 #include <experimental/string>
45 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
46 # pragma GCC system_header
49 _LIBCPP_BEGIN_NAMESPACE_LFTS_PMR
51 #ifndef _LIBCPP_CXX03_LANG
53 template <class _BiDirIter>
55 _VSTD::match_results<_BiDirIter,
56 polymorphic_allocator<_VSTD::sub_match<_BiDirIter>>>;
58 _LIBCPP_DEPCREATED_MEMORY_RESOURCE("cmatch") typedef match_results<const char*> cmatch;
59 _LIBCPP_DEPCREATED_MEMORY_RESOURCE("smatch") typedef match_results<_VSTD_LFTS_PMR::string::const_iterator> smatch;
60 #ifndef _LIBCPP_HAS_NO_WIDE_CHARACTERS
61 _LIBCPP_DEPCREATED_MEMORY_RESOURCE("wcmatch") typedef match_results<const wchar_t*> wcmatch;
62 _LIBCPP_DEPCREATED_MEMORY_RESOURCE("wsmatch") typedef match_results<_VSTD_LFTS_PMR::wstring::const_iterator> wsmatch;
65 #endif // _LIBCPP_CXX03_LANG
67 _LIBCPP_END_NAMESPACE_LFTS_PMR
69 #endif /* _LIBCPP_EXPERIMENTAL_REGEX */