[re.tokiter]
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@111278 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
64
test/re/re.iter/re.tokiter/re.tokiter.cnstr/array.pass.cpp
Normal file
64
test/re/re.iter/re.tokiter/re.tokiter.cnstr/array.pass.cpp
Normal file
@@ -0,0 +1,64 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <regex>
|
||||
|
||||
// class regex_token_iterator<BidirectionalIterator, charT, traits>
|
||||
|
||||
// template <size_t N>
|
||||
// regex_token_iterator(BidirectionalIterator a, BidirectionalIterator b,
|
||||
// const regex_type& re,
|
||||
// const int (&submatches)[N],
|
||||
// regex_constants::match_flag_type m =
|
||||
// regex_constants::match_default);
|
||||
|
||||
#include <regex>
|
||||
#include <cassert>
|
||||
|
||||
int main()
|
||||
{
|
||||
{
|
||||
std::regex phone_numbers("\\d{3}-(\\d{4})");
|
||||
const char phone_book[] = "start 555-1234, 555-2345, 555-3456 end";
|
||||
const int indices[] = {-1, 0, 1};
|
||||
std::cregex_token_iterator i(std::begin(phone_book), std::end(phone_book),
|
||||
phone_numbers, indices);
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "start ");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "555-1234");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "1234");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == ", ");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "555-2345");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "2345");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == ", ");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "555-3456");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "3456");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == " end");
|
||||
++i;
|
||||
assert(i == std::cregex_token_iterator());
|
||||
}
|
||||
}
|
32
test/re/re.iter/re.tokiter/re.tokiter.cnstr/default.pass.cpp
Normal file
32
test/re/re.iter/re.tokiter/re.tokiter.cnstr/default.pass.cpp
Normal file
@@ -0,0 +1,32 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <regex>
|
||||
|
||||
// class regex_token_iterator<BidirectionalIterator, charT, traits>
|
||||
|
||||
// regex_token_iterator();
|
||||
|
||||
#include <regex>
|
||||
#include <cassert>
|
||||
|
||||
template <class CharT>
|
||||
void
|
||||
test()
|
||||
{
|
||||
typedef std::regex_token_iterator<const CharT*> I;
|
||||
I i1;
|
||||
assert(i1 == I());
|
||||
}
|
||||
|
||||
int main()
|
||||
{
|
||||
test<char>();
|
||||
test<wchar_t>();
|
||||
}
|
64
test/re/re.iter/re.tokiter/re.tokiter.cnstr/init.pass.cpp
Normal file
64
test/re/re.iter/re.tokiter/re.tokiter.cnstr/init.pass.cpp
Normal file
@@ -0,0 +1,64 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <regex>
|
||||
|
||||
// class regex_token_iterator<BidirectionalIterator, charT, traits>
|
||||
|
||||
// regex_token_iterator(BidirectionalIterator a, BidirectionalIterator b,
|
||||
// const regex_type& re,
|
||||
// initializer_list<int> submatches,
|
||||
// regex_constants::match_flag_type m =
|
||||
// regex_constants::match_default);
|
||||
|
||||
#include <regex>
|
||||
#include <cassert>
|
||||
|
||||
int main()
|
||||
{
|
||||
#ifdef _LIBCPP_MOVE
|
||||
{
|
||||
std::regex phone_numbers("\\d{3}-(\\d{4})");
|
||||
const char phone_book[] = "start 555-1234, 555-2345, 555-3456 end";
|
||||
std::cregex_token_iterator i(std::begin(phone_book), std::end(phone_book),
|
||||
phone_numbers, {-1, 0, 1});
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "start ");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "555-1234");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "1234");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == ", ");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "555-2345");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "2345");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == ", ");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "555-3456");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "3456");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == " end");
|
||||
++i;
|
||||
assert(i == std::cregex_token_iterator());
|
||||
}
|
||||
#endif
|
||||
}
|
75
test/re/re.iter/re.tokiter/re.tokiter.cnstr/int.pass.cpp
Normal file
75
test/re/re.iter/re.tokiter/re.tokiter.cnstr/int.pass.cpp
Normal file
@@ -0,0 +1,75 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <regex>
|
||||
|
||||
// class regex_token_iterator<BidirectionalIterator, charT, traits>
|
||||
|
||||
// regex_token_iterator(BidirectionalIterator a, BidirectionalIterator b,
|
||||
// const regex_type& re, int submatch = 0,
|
||||
// regex_constants::match_flag_type m =
|
||||
// regex_constants::match_default);
|
||||
|
||||
#include <regex>
|
||||
#include <cassert>
|
||||
|
||||
int main()
|
||||
{
|
||||
{
|
||||
std::regex phone_numbers("\\d{3}-\\d{4}");
|
||||
const char phone_book[] = "start 555-1234, 555-2345, 555-3456 end";
|
||||
std::cregex_token_iterator i(std::begin(phone_book), std::end(phone_book),
|
||||
phone_numbers, -1);
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "start ");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == ", ");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == ", ");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == " end");
|
||||
++i;
|
||||
assert(i == std::cregex_token_iterator());
|
||||
}
|
||||
{
|
||||
std::regex phone_numbers("\\d{3}-\\d{4}");
|
||||
const char phone_book[] = "start 555-1234, 555-2345, 555-3456 end";
|
||||
std::cregex_token_iterator i(std::begin(phone_book), std::end(phone_book),
|
||||
phone_numbers);
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "555-1234");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "555-2345");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "555-3456");
|
||||
++i;
|
||||
assert(i == std::cregex_token_iterator());
|
||||
}
|
||||
{
|
||||
std::regex phone_numbers("\\d{3}-(\\d{4})");
|
||||
const char phone_book[] = "start 555-1234, 555-2345, 555-3456 end";
|
||||
std::cregex_token_iterator i(std::begin(phone_book), std::end(phone_book),
|
||||
phone_numbers, 1);
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "1234");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "2345");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "3456");
|
||||
++i;
|
||||
assert(i == std::cregex_token_iterator());
|
||||
}
|
||||
}
|
128
test/re/re.iter/re.tokiter/re.tokiter.cnstr/vector.pass.cpp
Normal file
128
test/re/re.iter/re.tokiter/re.tokiter.cnstr/vector.pass.cpp
Normal file
@@ -0,0 +1,128 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <regex>
|
||||
|
||||
// class regex_token_iterator<BidirectionalIterator, charT, traits>
|
||||
|
||||
// regex_token_iterator(BidirectionalIterator a, BidirectionalIterator b,
|
||||
// const regex_type& re,
|
||||
// const std::vector<int>& submatches,
|
||||
// regex_constants::match_flag_type m =
|
||||
// regex_constants::match_default);
|
||||
|
||||
#include <regex>
|
||||
#include <cassert>
|
||||
|
||||
int main()
|
||||
{
|
||||
{
|
||||
std::regex phone_numbers("\\d{3}-(\\d{4})");
|
||||
const char phone_book[] = "start 555-1234, 555-2345, 555-3456 end";
|
||||
std::vector<int> v;
|
||||
v.push_back(-1);
|
||||
v.push_back(-1);
|
||||
std::cregex_token_iterator i(std::begin(phone_book), std::end(phone_book),
|
||||
phone_numbers, v);
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "start ");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "start ");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == ", ");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == ", ");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == ", ");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == ", ");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == " end");
|
||||
++i;
|
||||
assert(i == std::cregex_token_iterator());
|
||||
}
|
||||
{
|
||||
std::regex phone_numbers("\\d{3}-(\\d{4})");
|
||||
const char phone_book[] = "start 555-1234, 555-2345, 555-3456 end";
|
||||
std::vector<int> v;
|
||||
v.push_back(-1);
|
||||
v.push_back(0);
|
||||
std::cregex_token_iterator i(std::begin(phone_book), std::end(phone_book),
|
||||
phone_numbers, v);
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "start ");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "555-1234");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == ", ");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "555-2345");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == ", ");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "555-3456");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == " end");
|
||||
++i;
|
||||
assert(i == std::cregex_token_iterator());
|
||||
}
|
||||
{
|
||||
std::regex phone_numbers("\\d{3}-(\\d{4})");
|
||||
const char phone_book[] = "start 555-1234, 555-2345, 555-3456 end";
|
||||
std::vector<int> v;
|
||||
v.push_back(-1);
|
||||
v.push_back(0);
|
||||
v.push_back(1);
|
||||
std::cregex_token_iterator i(std::begin(phone_book), std::end(phone_book),
|
||||
phone_numbers, v);
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "start ");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "555-1234");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "1234");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == ", ");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "555-2345");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "2345");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == ", ");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "555-3456");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "3456");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == " end");
|
||||
++i;
|
||||
assert(i == std::cregex_token_iterator());
|
||||
}
|
||||
}
|
36
test/re/re.iter/re.tokiter/re.tokiter.comp/equal.pass.cpp
Normal file
36
test/re/re.iter/re.tokiter/re.tokiter.comp/equal.pass.cpp
Normal file
@@ -0,0 +1,36 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <regex>
|
||||
|
||||
// class regex_token_iterator<BidirectionalIterator, charT, traits>
|
||||
|
||||
// bool operator==(const regex_token_iterator& right) const;
|
||||
// bool operator!=(const regex_token_iterator& right) const;
|
||||
|
||||
#include <regex>
|
||||
#include <cassert>
|
||||
|
||||
int main()
|
||||
{
|
||||
{
|
||||
std::regex phone_numbers("\\d{3}-\\d{4}");
|
||||
const char phone_book[] = "start 555-1234, 555-2345, 555-3456 end";
|
||||
std::cregex_token_iterator i(std::begin(phone_book), std::end(phone_book),
|
||||
phone_numbers, -1);
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(!(i == std::cregex_token_iterator()));
|
||||
std::cregex_token_iterator i2 = i;
|
||||
assert(i2 == i);
|
||||
assert(!(i2 != i));
|
||||
++i;
|
||||
assert(!(i2 == i));
|
||||
assert(i2 != i);
|
||||
}
|
||||
}
|
72
test/re/re.iter/re.tokiter/re.tokiter.deref/deref.pass.cpp
Normal file
72
test/re/re.iter/re.tokiter/re.tokiter.deref/deref.pass.cpp
Normal file
@@ -0,0 +1,72 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <regex>
|
||||
|
||||
// class regex_token_iterator<BidirectionalIterator, charT, traits>
|
||||
|
||||
// const value_type& operator*() const;
|
||||
|
||||
#include <regex>
|
||||
#include <cassert>
|
||||
|
||||
int main()
|
||||
{
|
||||
{
|
||||
std::regex phone_numbers("\\d{3}-\\d{4}");
|
||||
const char phone_book[] = "start 555-1234, 555-2345, 555-3456 end";
|
||||
std::cregex_token_iterator i(std::begin(phone_book), std::end(phone_book),
|
||||
phone_numbers, -1);
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert((*i).str() == "start ");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert((*i).str() == ", ");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert((*i).str() == ", ");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert((*i).str() == " end");
|
||||
++i;
|
||||
assert(i == std::cregex_token_iterator());
|
||||
}
|
||||
{
|
||||
std::regex phone_numbers("\\d{3}-\\d{4}");
|
||||
const char phone_book[] = "start 555-1234, 555-2345, 555-3456 end";
|
||||
std::cregex_token_iterator i(std::begin(phone_book), std::end(phone_book),
|
||||
phone_numbers);
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert((*i).str() == "555-1234");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert((*i).str() == "555-2345");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert((*i).str() == "555-3456");
|
||||
++i;
|
||||
assert(i == std::cregex_token_iterator());
|
||||
}
|
||||
{
|
||||
std::regex phone_numbers("\\d{3}-(\\d{4})");
|
||||
const char phone_book[] = "start 555-1234, 555-2345, 555-3456 end";
|
||||
std::cregex_token_iterator i(std::begin(phone_book), std::end(phone_book),
|
||||
phone_numbers, 1);
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert((*i).str() == "1234");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert((*i).str() == "2345");
|
||||
++i;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert((*i).str() == "3456");
|
||||
++i;
|
||||
assert(i == std::cregex_token_iterator());
|
||||
}
|
||||
}
|
72
test/re/re.iter/re.tokiter/re.tokiter.incr/post.pass.cpp
Normal file
72
test/re/re.iter/re.tokiter/re.tokiter.incr/post.pass.cpp
Normal file
@@ -0,0 +1,72 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <regex>
|
||||
|
||||
// class regex_token_iterator<BidirectionalIterator, charT, traits>
|
||||
|
||||
// regex_token_iterator& operator++(int);
|
||||
|
||||
#include <regex>
|
||||
#include <cassert>
|
||||
|
||||
int main()
|
||||
{
|
||||
{
|
||||
std::regex phone_numbers("\\d{3}-\\d{4}");
|
||||
const char phone_book[] = "start 555-1234, 555-2345, 555-3456 end";
|
||||
std::cregex_token_iterator i(std::begin(phone_book), std::end(phone_book),
|
||||
phone_numbers, -1);
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "start ");
|
||||
i++;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == ", ");
|
||||
i++;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == ", ");
|
||||
i++;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == " end");
|
||||
i++;
|
||||
assert(i == std::cregex_token_iterator());
|
||||
}
|
||||
{
|
||||
std::regex phone_numbers("\\d{3}-\\d{4}");
|
||||
const char phone_book[] = "start 555-1234, 555-2345, 555-3456 end";
|
||||
std::cregex_token_iterator i(std::begin(phone_book), std::end(phone_book),
|
||||
phone_numbers);
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "555-1234");
|
||||
i++;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "555-2345");
|
||||
i++;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "555-3456");
|
||||
i++;
|
||||
assert(i == std::cregex_token_iterator());
|
||||
}
|
||||
{
|
||||
std::regex phone_numbers("\\d{3}-(\\d{4})");
|
||||
const char phone_book[] = "start 555-1234, 555-2345, 555-3456 end";
|
||||
std::cregex_token_iterator i(std::begin(phone_book), std::end(phone_book),
|
||||
phone_numbers, 1);
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "1234");
|
||||
i++;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "2345");
|
||||
i++;
|
||||
assert(i != std::cregex_token_iterator());
|
||||
assert(i->str() == "3456");
|
||||
i++;
|
||||
assert(i == std::cregex_token_iterator());
|
||||
}
|
||||
}
|
45
test/re/re.iter/re.tokiter/types.pass.cpp
Normal file
45
test/re/re.iter/re.tokiter/types.pass.cpp
Normal file
@@ -0,0 +1,45 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <regex>
|
||||
|
||||
// template <class BidirectionalIterator,
|
||||
// class charT = typename iterator_traits< BidirectionalIterator>::value_type,
|
||||
// class traits = regex_traits<charT>>
|
||||
// class regex_token_iterator
|
||||
// {
|
||||
// public:
|
||||
// typedef basic_regex<charT, traits> regex_type;
|
||||
// typedef sub_match<BidirectionalIterator> value_type;
|
||||
// typedef ptrdiff_t difference_type;
|
||||
// typedef const value_type* pointer;
|
||||
// typedef const value_type& reference;
|
||||
// typedef forward_iterator_tag iterator_category;
|
||||
|
||||
#include <regex>
|
||||
#include <type_traits>
|
||||
|
||||
template <class CharT>
|
||||
void
|
||||
test()
|
||||
{
|
||||
typedef std::regex_token_iterator<const CharT*> I;
|
||||
static_assert((std::is_same<typename I::regex_type, std::basic_regex<CharT> >::value), "");
|
||||
static_assert((std::is_same<typename I::value_type, std::sub_match<const CharT*> >::value), "");
|
||||
static_assert((std::is_same<typename I::difference_type, std::ptrdiff_t>::value), "");
|
||||
static_assert((std::is_same<typename I::pointer, const std::sub_match<const CharT*>*>::value), "");
|
||||
static_assert((std::is_same<typename I::reference, const std::sub_match<const CharT*>&>::value), "");
|
||||
static_assert((std::is_same<typename I::iterator_category, std::forward_iterator_tag>::value), "");
|
||||
}
|
||||
|
||||
int main()
|
||||
{
|
||||
test<char>();
|
||||
test<wchar_t>();
|
||||
}
|
Reference in New Issue
Block a user