Home
last modified time | relevance | path

Searched refs:NonThrowingIterator (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/libcxx/test/support/
H A Dtest_iterators.h538 struct NonThrowingIterator { struct
545 NonThrowingIterator() in NonThrowingIterator() argument
549 NonThrowingIterator(const NonThrowingIterator& rhs) in NonThrowingIterator() argument
552 NonThrowingIterator& operator=(const NonThrowingIterator& rhs) TEST_NOEXCEPT {
563 NonThrowingIterator& operator++() TEST_NOEXCEPT {
568 NonThrowingIterator operator++(int) TEST_NOEXCEPT {
569 NonThrowingIterator temp = *this; argument
574 NonThrowingIterator & operator--() TEST_NOEXCEPT {
580 NonThrowingIterator temp = *this; argument
585 … friend bool operator==(const NonThrowingIterator& a, const NonThrowingIterator& b) TEST_NOEXCEPT {
[all …]
/llvm-project-15.0.7/libcxx/test/libcxx/iterators/
H A Dcontiguous_iterators.pass.cpp210 … static_assert((!std::__is_cpp17_contiguous_iterator<NonThrowingIterator <char *> >::value), ""); in main()