MCPcopy Create free account
hub / github.com/IppClub/Dora-SSR / to

Method to

Source/Event/Event.cpp:165–171  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

163}
164
165bool WasmEventArgs::to(bool& value, int index) {
166 if (index < s_cast<int>(_values.size()) && std::holds_alternative<bool>(_values[index])) {
167 value = std::get<bool>(_values[index]);
168 return true;
169 }
170 return false;
171}
172
173bool WasmEventArgs::to(Object*& value, int index) {
174 if (index < s_cast<int>(_values.size()) && std::holds_alternative<Object*>(_values[index])) {

Callers 8

prepareSelectionFunction · 0.45
drawSelectionRangeFunction · 0.45
codemirror.jsFile · 0.45
normalizeSelectionFunction · 0.45
leftButtonDownFunction · 0.45
extendToFunction · 0.45
applyTextInputFunction · 0.45
addEditorMethodsFunction · 0.45

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected