From my understanding, structures are basically hashmaps/dictionaries which means that they typically store the values in an actual array. I was wondering if there was a way for me to get this array? It is mostly to check whether a specific value is already in the structure before I add it to avoid duplicate values. The only way to do this currently from what I know is to either iterate through each key and compare its value or to create a separate array myself with and add/remove values whenever I modify the structure itself (which is mostly redundant if the structure itself hold these values in an array during execution.).