Home
last modified time | relevance | path

Searched refs:__nothrow_forward_iterator (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/libcxx/include/__memory/
H A Dranges_uninitialized_algorithms.h44 template <__nothrow_forward_iterator _ForwardIterator,
71 template <__nothrow_forward_iterator _ForwardIterator>
91 template <__nothrow_forward_iterator _ForwardIterator,
118 template <__nothrow_forward_iterator _ForwardIterator>
138 template <__nothrow_forward_iterator _ForwardIterator,
165 template <__nothrow_forward_iterator _ForwardIterator, class _Tp>
191 __nothrow_forward_iterator _OutputIterator,
227 __nothrow_forward_iterator _OutputIterator,
256 __nothrow_forward_iterator _OutputIterator,
292 __nothrow_forward_iterator _OutputIterator,
H A Dconcepts.h52 concept __nothrow_forward_iterator = variable
60 __nothrow_forward_iterator<iterator_t<_Rp>>;
/llvm-project-15.0.7/libcxx/test/libcxx/algorithms/specialized.algorithms/special.mem.concepts/
H A Dnothrow_forward_iterator.compile.pass.cpp29 static_assert(std::ranges::__nothrow_forward_iterator<forward_iterator<int*>>);
31 static_assert(!std::ranges::__nothrow_forward_iterator<ForwardProxyIterator>);
33 constexpr bool forward_subsumes_input(std::ranges::__nothrow_forward_iterator auto) { in forward_subsumes_input()