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

Method GetInt

KBotExt/imgui/imgui.cpp:2390–2396  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2388}
2389
2390int ImGuiStorage::GetInt(ImGuiID key, int default_val) const
2391{
2392 ImGuiStoragePair* it = LowerBound(const_cast<ImVector<ImGuiStoragePair>&>(Data), key);
2393 if (it == Data.end() || it->key != key)
2394 return default_val;
2395 return it->val_i;
2396}
2397
2398bool ImGuiStorage::GetBool(ImGuiID key, bool default_val) const
2399{

Callers 2

GetByKeyMethod · 0.80

Calls 2

LowerBoundFunction · 0.85
endMethod · 0.45

Tested by

no test coverage detected