MCPcopy Create free account
hub / github.com/NVIDIA/FasterTransformer / MakeKey

Method MakeKey

3rdparty/INIReader.h:481–487  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

479}
480
481inline std::string INIReader::MakeKey(std::string section, std::string name)
482{
483 std::string key = section + "=" + name;
484 // Convert to lower case to make section/name lookups case-insensitive
485 std::transform(key.begin(), key.end(), key.begin(), ::tolower);
486 return key;
487}
488
489inline int INIReader::ValueHandler(void* user, const char* section, const char* name,
490 const char* value)

Callers

nothing calls this directly

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected