struct ImGuiTextFilter::ImGuiTextRange

Overview

#include <imgui.h>

struct ImGuiTextRange
{
    // fields

    const char* b;
    const char* e;

    // construction

    ImGuiTextRange();

    ImGuiTextRange(
        const char* _b,
        const char* _e
        );

    // methods

    bool empty() const;

    IMGUI_API void split(
        char separator,
        ImVector<ImGuiTextRange>* out
        ) const;
};