BIS fnc removeFromPairs: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
Line 5: | Line 5: | ||
|version1= 1.00 | |version1= 1.00 | ||
|gr1 = Arrays |GROUP1= | |||
|descr= Removes an item from pair array modifying original array. This can be overriden by setting '_copyArray' param to true. | |descr= Removes an item from pair array modifying original array. This can be overriden by setting '_copyArray' param to true. | ||
Line 38: | Line 34: | ||
<h3 style="display:none">Bottom Section</h3> | <h3 style="display:none">Bottom Section</h3> | ||
[[Category:Functions|{{uc:removeFromPairs}}]] | [[Category:Functions|{{uc:removeFromPairs}}]] | ||
[[Category:{{Name|arma3}}: Functions|{{uc:removeFromPairs}}]] | [[Category:{{Name|arma3}}: Functions|{{uc:removeFromPairs}}]] |
Revision as of 16:16, 9 October 2020
Description
- Description:
- Removes an item from pair array modifying original array. This can be overriden by setting '_copyArray' param 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:
[[["apple",3],["pear",2]],"pear"] call BIS_fnc_removeFromPairs; // Returns [["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