File RangeView.h File List > include > structure > RangeView.h Go to the documentation of this file #pragma once template <typename Iter> struct RangeView { Iter b; Iter e; Iter begin() const { return b; } Iter end() const { return e; } };