BIS fnc removeFromPairs: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Some wiki formatting) |
Lou Montana (talk | contribs) m (Text replacement - "overriden" to "overridden") |
||
Line 6: | Line 6: | ||
|gr1= Arrays | |gr1= Arrays | ||
|descr= Removes an item from pair array modifying the original array. This can be | |descr= Removes an item from pair array modifying the original array. This can be overridden by setting ''_copyArray'' to true. | ||
|s1= [array, key, copyArray] call [[BIS_fnc_removeFromPairs]] | |s1= [array, key, copyArray] call [[BIS_fnc_removeFromPairs]] |
Revision as of 14:36, 9 November 2023
Description
- Description:
- Removes an item from pair array modifying the original array. This can be overridden by setting _copyArray to true.
- Execution:
- call
- Groups:
- Arrays
Syntax
- Syntax:
- [array, key, copyArray] call BIS_fnc_removeFromPairs
- Parameters:
- array: Array - array to search through
- key: String - key to search for
- copyArray: Boolean - (Optional, default false) true to copy the array and return it, false to modify the original array
- Return Value:
- Array - resulting modified array or a copy
Examples
- Example 1:
- private _pairs = [[["apple", 3], ["pear", 2]], "pear"]; [_pairs, "pear", true] call BIS_fnc_removeFromPairs; // returns "apple", 3 - _pairs is not modified [_pairs, "pear"] call BIS_fnc_removeFromPairs; // returns "apple", 3 - _pairs is now "apple", 3
Additional Information
- See also:
- find findIf BIS_fnc_findInPairs BIS_fnc_getFromPairs BIS_fnc_addToPairs BIS_fnc_setToPairs
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