gen-to-ranges: rename folly::gen::detail types
Summary:
Context: migration of fbcode from folly::gen to range-v3 by way of pipe-adapters ("pipe fittings") that allow a `|`-based pipeline mixing {std-containers and/or range-v3} with folly::gen, e.g.,
```
auto result = myVec // anything consistent with range-v3 or these adapters
| ranges::view::filter(...) // zero-or-more range-v3 pipe-elems
| <adapter-goes-here> // <==**one of the pipe-adapters provided by this task**
| folly::gen::blah(); // trailing pipe-elems are folly::gen
```
Goal of this task: rename the pipe-adapter folly::gen::detail types so those names are consistent with the names of the corresponding folly::gen::objects.
Reviewed By: yfeldblum
Differential Revision: D16138397
fbshipit-source-id: 3e6145f5bb35c8d2bd14a9a3eb645e153743d499
Showing
Please register or sign in to comment