👩💻 Join our community of thousands of amazing developers!
diff --git a/reference/algorithm/ranges_ends_with.md b/reference/algorithm/ranges_ends_with.md new file mode 100644 index 000000000..15fe0518f --- /dev/null +++ b/reference/algorithm/ranges_ends_with.md @@ -0,0 +1,132 @@ +# ends_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::equal_t...