config greater greater name: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(note modified & see also)
m (template:command argument fix)
(9 intermediate revisions by 3 users not shown)
Line 7: Line 7:
____________________________________________________________________________________________
____________________________________________________________________________________________


|Returns subentry of config entry with given name. Identical to [[config/name]]|= Description
|Returns [[Config | config]] entry with given name (alias of [[config / name]], slightly faster but with [[SQF_syntax#Rules_of_Precedence | lower precedence]]) |DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


| '''''config'' >> ''name'''''|= Syntax
| config '''>>''' name|SYNTAX=


| p1 = config: [[Config]]|=Parameter 1
| p1 = config: [[Config]]|PARAMETER1=


|p2 =  name: [[String]] | = Parameter 2
|p2 =  name: [[String]] | = Parameter 2




| [[Config]]  |= Return value
| [[Config]] - config entry |RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________


| x1 = <code>[[configFile]] [[config greater greater name|>>]] "CfgVehicles";</code> | = Example 1
| x1 = <code>[[configFile]] [[config greater greater name|>>]] "CfgVehicles";</code> | = Example 1


| [[configFile]], [[config/name]], [[configName]], [[count]], [[getText]], [[isArray]], [[isClass]], [[isNumber]], [[isText]], [[select]], [[configClasses]] |= See also
| [[configFile]], [[config/name]], [[configName]], [[count]], [[getText]], [[isArray]], [[isClass]], [[isNumber]], [[isText]], [[select]], [[configClasses]] |SEEALSO=


}}
}}
Line 28: Line 28:
<h3 style="display:none">Notes</h3>
<h3 style="display:none">Notes</h3>
<dl class="command_description">
<dl class="command_description">
<!-- Note Section BEGIN -->
<dd class="notedate">Posted on Jul 19, 2014 - 20:08
<dt class="note">'''[[User:ffur2007slx2_5|ffur2007slx2_5]]'''<dd class="note">
(ArmA3 1.24) It is recommended to use [[configClasses]] instead of [[BIS_fnc_getCfgSubClasses]] and [[BIS_fnc_uniqueClasses]] on subclasses collection or conditional selection.
<code>
_faces = "[[true]]" [[configClasses]] ([[configFile]] >> "Cfgfaces");
//same as: _faces = (configfile >> "CfgFaces") [[call]] [[BIS_fnc_getCfgSubClasses]];
</code>
<code>
//Extract all animals:
animals = "(([[configName]] _x) [[isKindOf]] 'animal')" [[configClasses]] ([[configFile]] >> "CfgVehicles");
/*same as:
aniamls = [];
[([[configFile]] >> "CfgVehicles"),{
[[if]] (([[configName]] _this) [[isKindOf]] “animal”) [[then]] {
  animals [[set]] [ [[count]] animals, _this]
  }
}
] [[call]] [[BIS_fnc_uniqueClasses]];*/
</code>
Return nested subclasses, currently still [[BIS_fnc_returnChildren]]
<code>
//Return all nested config classes.<br>
[([[configFile]] >> "CfgFaces"),1, [[true]], [[true]] ] [[call]] [[BIS_fnc_returnChildren]];
</code>
<!-- Note Section END -->
</dl>
</dl>



Revision as of 15:35, 7 April 2019

-wrong parameter ("Arma") defined!-1.00
Hover & click on the images for description

Description

Description:
Returns config entry with given name (alias of config / name, slightly faster but with lower precedence)
Groups:
Uncategorised

Syntax

Syntax:
config >> name
Parameters:
config: Config
name: String
Return Value:
Config - config entry

Examples

Example 1:
configFile >> "CfgVehicles";

Additional Information

See also:
configFileconfig/nameconfigNamecountgetTextisArrayisClassisNumberisTextselectconfigClasses

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Notes

Bottom Section