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

via libc-commits libc-commits at lists.llvm.org
Thu May 30 20:39:19 PDT 2024


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

Ah, I totally made a mistake

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


More information about the libc-commits mailing list