[libcxx][iterator][ranges] adds `bidirectional_iterator` and `bidirectional_range`
Implements parts of:
* P0896R4 The One Ranges Proposal`
Depends on D100275.
Differential Revision: https://reviews.llvm.org/D100278
NOKEYCHECK=True
GitOrigin-RevId: 9c5d86aac505228eddbfda86aa558467d0b7c5e6
diff --git a/include/ranges b/include/ranges
index 58b67f1..0328360 100644
--- a/include/ranges
+++ b/include/ranges
@@ -54,6 +54,9 @@
template<class T>
concept forward_range = see below;
+ template<class T>
+ concept bidirectional_range = see below;
+
template <class _Tp>
concept common_range = see below;
}