Arma Reforger Explorer
1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Toggle main menu visibility
Loading...
Searching...
No Matches
map Class Reference
Types
Inheritance diagram for map:
Detailed Description
Associative array template. Usage:
map<string, int>
prg_count =
new
map<string, int>
;
// fill
prg_count.Insert(
"hello"
, 10);
prg_count.Insert(
"world"
, 20);
prg_count.Insert(
"!"
, 1);
Print
(prg_count.Get(
"world"
));
// prints '20'
map
Definition
Types.c:486
Print
proto void Print(void var, LogLevel level=LogLevel.NORMAL)
Prints content of variable to console/log.
Definition at line
485
of file
Types.c
.
The documentation for this class was generated from the following file:
scripts/Core/proto/
Types.c
map
Generated by
1.17.0