Dayz Explorer  1.24.157551 (v105080)
Dayz Code Explorer by Zeroy
multiMap< Class K, Class V > Class Reference

Associative array template, with multiple values per key
usage: More...

Detailed Description

Associative array template, with multiple values per key
usage:

ref multiMap<string, int> myMap = new multiMap<string, int>;
myMap.Insert("jozo", 7);
myMap.Insert("jozo", 3);
myMap.Insert("jozo", 5);
myMap.Insert("fero", 98);
myMap.Insert("fero", 35);
myMap.Insert("fero", 17);
Print("Jozo:");
myMap.Get("jozo").Debug();
Print("Fero:");
myMap.Get("fero").Debug();

Definition at line 867 of file tools.c.


The documentation for this class was generated from the following file:
Print
proto void Print(void var)
Prints content of variable to console/log.