Home
last modified time | relevance | path

Searched refs:remove_copy_result (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/libcxx/include/__algorithm/
H A Dranges_remove_copy.h36 using remove_copy_result = in_out_result<_InIter, _OutIter>; variable
48 _LIBCPP_HIDE_FROM_ABI constexpr remove_copy_result<_InIter, _OutIter>
57 _LIBCPP_HIDE_FROM_ABI constexpr remove_copy_result<borrowed_iterator_t<_Range>, _OutIter>
/llvm-project-15.0.7/libcxx/test/std/algorithms/
H A Dranges_result_alias_declarations.compile.pass.cpp35 static_assert(std::is_same_v<in_out_result<int, long>, remove_copy_result<int, long>>);
H A Dranges_robust_against_dangling.pass.cpp83 using std::ranges::remove_copy_result; in test_all()
151 dangling_1st<remove_copy_result<dangling, int*>>(std::ranges::remove_copy, in, out, x); in test_all()
/llvm-project-15.0.7/libcxx/test/std/algorithms/alg.modifying.operations/alg.remove/
H A Dranges_remove_copy.pass.cpp108 using Result = std::ranges::remove_copy_result<InIter, OutIter>; in test()
/llvm-project-15.0.7/libcxx/include/
H A Dalgorithm956 …using remove_copy_result = in_out_result<I, O>; // Si…
961 constexpr remove_copy_result<I, O>
968 constexpr remove_copy_result<borrowed_iterator_t<R>, O>