Iterate through all keys and values in a Hash.
Data passed to the function on each iteration,
See CBA_fnc_hashCreate.
_hash | Hash to iterate [Array which is a Hash structure] |
_code | Function to call with each pair [Any] |
nil
_dumpHash = { diag_log format ["Key: %1, Value: %2", _key, _value]; }; [_hash, _dumpHash] call CBA_fnc_hashEachPair;
Spooner