template struct ImPlot::GetterLoop

Overview

template <typename _Getter>
struct GetterLoop
{
    // typedefs

    typedef ImPlotPoint value_type;

    // fields

    const _Getter Getter;
    const int Count;

    // construction

    GetterLoop(_Getter getter);

    // methods

    template <typename I>
    IMPLOT_INLINE ImPlotPoint operator [] (I idx) const;
};