Variable beluga::views::take_evenly
Defined in File take_evenly.hpp
Variable Documentation
-
constexpr detail::take_evenly_fn beluga::views::take_evenly
Range adaptor object that will take elements evenly spaced over a range. Given a source range and an integral count, returns a range consisting of
count
elements evenly spaced over the source range. Ifcount
or the range size are zero, it returns an empty range. Ifcount
is greater than the range size, it returns all the elements. The first element of the range is always included.