[libcxx][ranges] Add `counted_iterator`.
authorzoecarver <z.zoelec2@gmail.com>
Tue, 13 Jul 2021 18:06:10 +0000 (11:06 -0700)
committerzoecarver <z.zoelec2@gmail.com>
Tue, 27 Jul 2021 22:50:11 +0000 (15:50 -0700)
commit8a48e6dda9f7fb9c7ae7207dcb9570d2c11255ad
tree274cec621a02e1579a95f585cdcdb9550bf55b07
parentb187e0389d13d72056c7c15e10bcb7f429a9aa87
[libcxx][ranges] Add `counted_iterator`.

Differential Revision: https://reviews.llvm.org/D106205
29 files changed:
libcxx/docs/Status/RangesPaper.csv
libcxx/include/CMakeLists.txt
libcxx/include/__iterator/counted_iterator.h [new file with mode: 0644]
libcxx/include/iterator
libcxx/include/module.modulemap
libcxx/test/libcxx/diagnostics/detail.headers/iterator/counted_iterator.module.verify.cpp [new file with mode: 0644]
libcxx/test/std/iterators/predef.iterators/counted.iterator/arrow.pass.cpp [new file with mode: 0644]
libcxx/test/std/iterators/predef.iterators/counted.iterator/assign.pass.cpp [new file with mode: 0644]
libcxx/test/std/iterators/predef.iterators/counted.iterator/base.pass.cpp [new file with mode: 0644]
libcxx/test/std/iterators/predef.iterators/counted.iterator/compare.pass.cpp [new file with mode: 0644]
libcxx/test/std/iterators/predef.iterators/counted.iterator/count.pass.cpp [new file with mode: 0644]
libcxx/test/std/iterators/predef.iterators/counted.iterator/ctor.conv.pass.cpp [new file with mode: 0644]
libcxx/test/std/iterators/predef.iterators/counted.iterator/ctor.default.pass.cpp [new file with mode: 0644]
libcxx/test/std/iterators/predef.iterators/counted.iterator/ctor.iter.pass.cpp [new file with mode: 0644]
libcxx/test/std/iterators/predef.iterators/counted.iterator/decrement.pass.cpp [new file with mode: 0644]
libcxx/test/std/iterators/predef.iterators/counted.iterator/deref.pass.cpp [new file with mode: 0644]
libcxx/test/std/iterators/predef.iterators/counted.iterator/increment.cpp [new file with mode: 0644]
libcxx/test/std/iterators/predef.iterators/counted.iterator/iter_move.pass.cpp [new file with mode: 0644]
libcxx/test/std/iterators/predef.iterators/counted.iterator/iter_swap.pass.cpp [new file with mode: 0644]
libcxx/test/std/iterators/predef.iterators/counted.iterator/iterator_concept_conformance.compile.pass.cpp [new file with mode: 0644]
libcxx/test/std/iterators/predef.iterators/counted.iterator/iterator_traits.compile.pass.cpp [new file with mode: 0644]
libcxx/test/std/iterators/predef.iterators/counted.iterator/member_types.compile.pass.cpp [new file with mode: 0644]
libcxx/test/std/iterators/predef.iterators/counted.iterator/minus.default_sentinel.pass.cpp [new file with mode: 0644]
libcxx/test/std/iterators/predef.iterators/counted.iterator/minus.eq.pass.cpp [new file with mode: 0644]
libcxx/test/std/iterators/predef.iterators/counted.iterator/minus.iter.pass.cpp [new file with mode: 0644]
libcxx/test/std/iterators/predef.iterators/counted.iterator/minus.size.pass.cpp [new file with mode: 0644]
libcxx/test/std/iterators/predef.iterators/counted.iterator/plus.pass.cpp [new file with mode: 0644]
libcxx/test/std/iterators/predef.iterators/counted.iterator/subscript.pass.cpp [new file with mode: 0644]
libcxx/test/std/iterators/predef.iterators/counted.iterator/three_way_compare.pass.cpp [new file with mode: 0644]