[libc-commits] [libc] [libc] Implement forward iterators (PR #93916)

Joseph Huber via libc-commits libc-commits at lists.llvm.org
Thu May 30 20:37:58 PDT 2024


================
@@ -28,6 +28,11 @@ TEST(LlvmLibcArrayTest, Basic) {
   ASSERT_EQ(*(++it), 1);
   ASSERT_EQ(*(++it), 0);
 
+  auto forward_it = a.begin();
----------------
jhuber6 wrote:

This tests `cpp::array` and not `cpp::fixed_vector`.

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


More information about the libc-commits mailing list