Variable beluga::views::take_evenly

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. If count or the range size are zero, it returns an empty range. If count is greater than the range size, it returns all the elements. The first and last elements of the range are always included.