template struct ImPlot::IndexerIdx

Overview

template <typename T>
struct IndexerIdx
{
    // typedefs

    typedef double value_type;

    // fields

    const T* Data;
    int Count;
    int Offset;
    int Stride;

    // construction

    IndexerIdx(
        const T* data,
        int count,
        int offset = 0,
        int stride = sizeof(T)
        );

    // methods

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