Numbering and pairing of lua tables

This commit is contained in:
2021-08-13 17:02:35 -04:00
parent ee16970a8a
commit 7581ac7278
7 changed files with 504 additions and 7 deletions

View File

@@ -24,6 +24,9 @@ using StringVec = std::vector<std::string>;
using HashValue = std::pair<uint64_t, uint64_t>;
using IdVector = std::vector<int64_t>;
// ID vector quick create.
IdVector id_vector_create(int64_t id1=-1, int64_t id2=-1, int64_t id3=-1, int64_t id4=-1);
// ID vector debug string.
std::string id_vector_debug_string(const IdVector &idv);