[Lldb-commits] [lldb] [libc++][ranges] Implement ranges::contains_subrange (PR #66963)

Konstantin Varlamov via lldb-commits lldb-commits at lists.llvm.org
Fri Oct 13 18:46:31 PDT 2023


================
@@ -0,0 +1,303 @@
+//===----------------------------------------------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+// <algorithm>
+
+// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
+// ADDITIONAL_COMPILE_FLAGS(has-fconstexpr-steps): -fconstexpr-steps=2000000
+
+// template<input_iterator I, sentinel_for<I> S, class T, class Proj = identity>
+//     requires indirect_binary_predicate<ranges::equal_to, projected<I, Proj>, const T*>
+//     constexpr bool ranges::contains(I first, S last, const T& value, Proj proj = {});       // since C++23
----------------
var-const wrote:

This synopsis is for `contains`, not `contains_subrange`.

https://github.com/llvm/llvm-project/pull/66963


More information about the lldb-commits mailing list