MCPcopy Create free account
hub / github.com/KebsCS/KBotExt / ImGuiTextRange

Class ImGuiTextRange

KBotExt/imgui/imgui.h:2282–2291  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2280
2281 // [Internal]
2282 struct ImGuiTextRange
2283 {
2284 const char* b;
2285 const char* e;
2286
2287 ImGuiTextRange() { b = e = NULL; }
2288 ImGuiTextRange(const char* _b, const char* _e) { b = _b; e = _e; }
2289 bool empty() const { return b == e; }
2290 IMGUI_API void split(char separator, ImVector<ImGuiTextRange>* out) const;
2291 };
2292 char InputBuf[256];
2293 ImVector<ImGuiTextRange>Filters;
2294 int CountGrep;

Callers 1

splitMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected