[all-commits] [llvm/llvm-project] 7c1773: [libcxx][ranges] adds `ranges::range`, `ranges::co...
Christopher Di Bella via All-commits
all-commits at lists.llvm.org
Fri Apr 30 10:00:10 PDT 2021
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: 7c17731596e9cb05b861f1a1be35fb827d33f632
https://github.com/llvm/llvm-project/commit/7c17731596e9cb05b861f1a1be35fb827d33f632
Author: Christopher Di Bella <cjdb at google.com>
Date: 2021-04-30 (Fri, 30 Apr 2021)
Changed paths:
M libcxx/include/CMakeLists.txt
A libcxx/include/__ranges/concepts.h
M libcxx/include/ranges
M libcxx/test/std/containers/associative/map/range_concept_conformance.compile.pass.cpp
M libcxx/test/std/containers/associative/multimap/range_concept_conformance.compile.pass.cpp
M libcxx/test/std/containers/associative/multiset/range_concept_conformance.compile.pass.cpp
M libcxx/test/std/containers/associative/set/range_concept_conformance.compile.pass.cpp
M libcxx/test/std/containers/sequences/array/range_concept_conformance.compile.pass.cpp
M libcxx/test/std/containers/sequences/deque/range_concept_conformance.compile.pass.cpp
M libcxx/test/std/containers/sequences/forwardlist/range_concept_conformance.compile.pass.cpp
M libcxx/test/std/containers/sequences/list/range_concept_conformance.compile.pass.cpp
M libcxx/test/std/containers/sequences/vector.bool/range_concept_conformance.compile.pass.cpp
M libcxx/test/std/containers/sequences/vector/range_concept_conformance.compile.pass.cpp
M libcxx/test/std/containers/unord/unord.map/range_concept_conformance.compile.pass.cpp
M libcxx/test/std/containers/unord/unord.multimap/range_concept_conformance.compile.pass.cpp
M libcxx/test/std/containers/unord/unord.multiset/range_concept_conformance.compile.pass.cpp
M libcxx/test/std/containers/unord/unord.set/range_concept_conformance.compile.pass.cpp
M libcxx/test/std/containers/views/range_concept_conformance.compile.pass.cpp
M libcxx/test/std/input.output/filesystems/class.directory_iterator/range_concept_conformance.compile.pass.cpp
M libcxx/test/std/input.output/filesystems/class.path/range_concept_conformance.compile.pass.cpp
A libcxx/test/std/ranges/range.range/helper_aliases.compile.pass.cpp
A libcxx/test/std/ranges/range.range/range.compile.pass.cpp
A libcxx/test/std/ranges/range.range/sentinel_t.compile.pass.cpp
A libcxx/test/std/ranges/range.refinements/common_range.compile.pass.cpp
M libcxx/test/std/re/re.results/range_concept_conformance.compile.pass.cpp
M libcxx/test/std/strings/basic.string/range_concept_conformance.compile.pass.cpp
M libcxx/test/std/strings/string.view/range_concept_conformance.compile.pass.cpp
M libcxx/test/support/test_range.h
Log Message:
-----------
[libcxx][ranges] adds `ranges::range`, `ranges::common_range`, and range aliases
* `std::ranges::range`
* `std::ranges::sentinel_t`
* `std::ranges::range_difference_t`
* `std::ranges::range_value_t`
* `std::ranges::range_reference_t`
* `std::ranges::range_rvalue_reference_t`
* `std::ranges::common_range`
`range_size_t` depends on `sized_range` and will be added alongside it.
Implements parts of:
* P0896R4 The One Ranges Proposal`
Depends on D100255.
Differential Revision: https://reviews.llvm.org/D100269
More information about the All-commits
mailing list