I think i got it probably:
TSet is container like array but same value can be added only once, for example 1, 2, 3, 4, 5, in array i can have values like 5, 5, 5, 2, 1, 5…
TMap has unique only KEY, so if i add key like “weapon1”, “weapon2”, “weapon3”, i can add to them “rocket”, “pistol”, “knife”… If i try to add same key, like weapon2->chainsaw, then it won’t create another key+value set, but only overwrite weapon2 from pistol to chainsaw…
am i right?
HOWEVER, can someone give me a good example where can i use this? because i really dont have idea…