Returns an array of config entries which meet criteria in condition code.
Command iterates through all available config sub classes of the given config class. Current looked at config is stored in _x variable (similar to alternative count command implementation).
Condition has to return true in order for the looked at config to be added to the resulting array.
Used In
Arma3
Example
//List all CfgVehicles class names in .rpt file
_configs = "diag_log configName _x; true" configClasses (configFile >> "CfgVehicles");
//Return all classes that can transport 10 and more soldiers
_transporters = "getNumber (_x >> 'transportSoldier') >= 10" configClasses (configFile >> "CfgVehicles");