Since type checking is being introduced, how can I make maps that contain a key as one class and a value as a other class?
Something like this in C++
#include <map>
int main(int argc, char** argv)
{
std::map<char,uint32_t> someMap = {
{'L',256}
};
return 0;
}