MCPcopy Create free account
hub / github.com/Achain-Dev/Achain / NewTableItem

Function NewTableItem

src/Chain/libraries/glua/glua_decompile.cpp:980–988  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

978*/
979
980DecTableItem* NewTableItem(std::string value, int index, std::string key) {
981 auto self = new DecTableItem();
982 self->super.prev = nullptr;
983 self->super.next = nullptr;
984 self->value = value;
985 self->index = index;
986 self->key = std::string(key);
987 return self;
988}
989
990static char string_last_char(std::string const &str)
991{

Callers 1

AddToTableFunction · 0.85

Calls 1

stringClass · 0.50

Tested by

no test coverage detected