1// -*- C++ -*-
2//===----------------------------------------------------------------------===//
3//
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
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef _LIBCPP_EXPERIMENTAL_REGEX
11#define _LIBCPP_EXPERIMENTAL_REGEX
12
13/*
14    experimental/regex synopsis
15
16// C++1z
17namespace std {
18namespace experimental {
19inline namespace fundamentals_v1 {
20namespace pmr {
21
22  template <class BidirectionalIterator>
23  using match_results =
24    std::match_results<BidirectionalIterator,
25                       polymorphic_allocator<sub_match<BidirectionalIterator>>>;
26
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;
31
32} // namespace pmr
33} // namespace fundamentals_v1
34} // namespace experimental
35} // namespace std
36
37 */
38
39#include <__assert> // all public C++ headers provide the assertion handler
40#include <experimental/__config>
41#include <experimental/memory_resource>
42#include <experimental/string>
43#include <regex>
44
45#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
46#  pragma GCC system_header
47#endif
48
49_LIBCPP_BEGIN_NAMESPACE_LFTS_PMR
50
51template <class _BiDirIter>
52using match_results =
53    _VSTD::match_results<_BiDirIter,
54        polymorphic_allocator<_VSTD::sub_match<_BiDirIter>>>;
55
56typedef match_results<const char*> cmatch;
57typedef match_results<_VSTD_LFTS_PMR::string::const_iterator> smatch;
58#ifndef _LIBCPP_HAS_NO_WIDE_CHARACTERS
59typedef match_results<const wchar_t*> wcmatch;
60typedef match_results<_VSTD_LFTS_PMR::wstring::const_iterator> wsmatch;
61#endif
62
63_LIBCPP_END_NAMESPACE_LFTS_PMR
64
65#endif /* _LIBCPP_EXPERIMENTAL_REGEX */
66