In data processing, I often need to create a search data structure to map one identifier to another. As a specific example, take a structure that contains a 1 to 1 mapping between a country code of 2 and its full name. In it we would have
AD -> Andorra AE -> United Arab Emirates AF -> Afghanistan
What is a good name for a variable that would hold this card? Some ideas (I will use the names of the camels):
countryNameByCode nameByCodeLookup nameCodeLookup codeToName
language-agnostic naming-conventions
Trenton
source share