👩💻 Join our community of thousands of amazing developers!
diff --git a/reference/algorithm/ranges_starts_with.md b/reference/algorithm/ranges_starts_with.md new file mode 100644 index 000000000..3587ee965 --- /dev/null +++ b/reference/algorithm/ranges_starts_with.md @@ -0,0 +1,106 @@ +# starts_with +* algorithm[meta header] +* std::ranges[meta namespace] +* function template[meta id-type] +* cpp23[meta cpp] + +```cpp +namespace std::ranges { + template<input_iterator I1, sentinel_for<I1> S1, input_iterator I2, sentinel_for<I2> S2, class Pred = ranges:...