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

Method Add

scintilla/lexlib/CharacterSet.h:69–73  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67 return *this;
68 }
69 void Add(int val) {
70 assert(val >= 0);
71 assert(val < size);
72 bset[val] = true;
73 }
74 void AddString(const char *setToAdd) {
75 for (const char *cp=setToAdd; *cp; cp++) {
76 int val = static_cast<unsigned char>(*cp);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected