Searched defs:ThrowOnCopyPred (Results 1 – 2 of 2) sorted by relevance
12 struct ThrowOnCopyPred { struct14 ThrowOnCopyPred(const ThrowOnCopyPred&) { throw 0; } in ThrowOnCopyPred() argument15 ThrowOnCopyPred& operator=(const ThrowOnCopyPred&) = delete; argument18 ThrowOnCopyPred& operator=(ThrowOnCopyPred&&) = default; argument20 bool operator()(int x, int y) const { return x != y; } in operator()
24 struct ThrowOnCopyPred { struct26 ThrowOnCopyPred(const ThrowOnCopyPred&) { throw Exception{}; } in ThrowOnCopyPred() argument37 auto v1 = std::views::drop_while(input, ThrowOnCopyPred{}); in main() argument