Create a range from two iterators, with type deduction.
Declared in <folly/Range.h>
template<class Iter>
constexpr
Range<Iter>
range(
Iter first,
Iter last);
The resulting range.
| Name | Description |
|---|---|
| first | The iterator to the first element. |
| last | The iterator past the last element. |