Home
last modified time | relevance | path

Searched defs:ThrowOnCopyPred (Results 1 – 2 of 2) sorted by relevance

/llvm-project/libcxx/test/libcxx/ranges/range.adaptors/range.chunk.by/
H A Dtypes.h12 struct ThrowOnCopyPred { struct
14 ThrowOnCopyPred(const ThrowOnCopyPred&) { throw 0; } in ThrowOnCopyPred() function
15 ThrowOnCopyPred& operator=(const ThrowOnCopyPred&) = delete; argument
18 ThrowOnCopyPred& operator=(ThrowOnCopyPred&&) = default; argument
20 bool operator()(int x, int y) const { return x != y; } in operator()
/llvm-project/libcxx/test/libcxx/ranges/range.adaptors/range.drop.while/
H A Dassert.begin.pass.cpp24 struct ThrowOnCopyPred { struct
26 ThrowOnCopyPred(const ThrowOnCopyPred&) { throw Exception{}; } in ThrowOnCopyPred() argument
37 auto v1 = std::views::drop_while(input, ThrowOnCopyPred{}); in main() argument