| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
llvm-svn: 298841
|
|
|
|
|
|
|
|
|
|
|
|
| |
This commit provides `zip_{first,shortest}` with the standard member types and
methods expected of iterators (e.g., `difference_type`), in order for zip to be
used with other adaptors, such as `make_filter_range`.
Support for reverse iteration has also been added.
Differential Revision: https://reviews.llvm.org/D30246
llvm-svn: 296036
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This augments the STLExtras toolset with a zip iterator and range
adapter. Zip comes in two varieties: `zip`, which will zip to the
shortest of the input ranges, and `zip_first`, which limits its
`begin() == end()` checks to just the first range.
Recommit r284035 after MSVC2013 support has been dropped.
Patch by: Bryant Wong <github.com/bryant>
Differential Revision: https://reviews.llvm.org/D23252
llvm-svn: 284623
|
|
|
|
|
|
| |
This reverts commit r284035, which breaks with MSVC 2013.
llvm-svn: 284037
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This augments the STLExtras toolset with a zip iterator and range
adapter. Zip comes in two varieties: `zip`, which will zip to the
shortest of the input ranges, and `zip_first`, which limits its
`begin() == end()` checks to just the first krange.
Patch by: Bryant Wong <github.com/bryant>
Differential Revision: https://reviews.llvm.org/D23252
llvm-svn: 284035
|
|
|
|
| |
llvm-svn: 283794
|
|
|
|
|
|
|
|
|
|
| |
Reviewers: timshen
Subscribers: llvm-commits
Differential Revision: https://reviews.llvm.org/D25418
llvm-svn: 283765
|
|
This testing stuff from ADT, not Support. Fix the file location.
llvm-svn: 279372
|