MCPcopy Create free account
hub / github.com/ProgerXP/Notepad2e / Set

Method Set

scintilla/lexlib/SparseState.h:44–49  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

42 positionFirst = positionFirst_;
43 }
44 void Set(int position, T value) {
45 Delete(position);
46 if (states.empty() || (value != states[states.size()-1].value)) {
47 states.push_back(State(position, value));
48 }
49 }
50 T ValueAt(int position) {
51 if (states.empty())
52 return T();

Callers

nothing calls this directly

Calls 2

StateClass · 0.85
sizeMethod · 0.80

Tested by

no test coverage detected