BIS fnc removeFromPairs: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "^ {{Function\|Comments\=" to "{{Function|Comments=")
mNo edit summary
Line 1: Line 1:
{{Function|Comments=
{{Function
____________________________________________________________________________________________


| arma3 |Game name=
|game1= arma3


|1.00|Game version=
|version1= 1.00
____________________________________________________________________________________________


| <pre>/*
<!--|serverExec= server-->


Description:
<!--|arg= local-->
Removes an item from pair array.
*/


</pre><small>''(Placeholder description extracted from the function header by [[BIS_fnc_exportFunctionsToWiki]])''</small> |DESCRIPTION=
<!--|eff= local-->
____________________________________________________________________________________________


| <!-- [] call [[BIS_fnc_removeFromPairs]]; --> |SYNTAX=
|descr= Removes an item from pair array modifying original array. This can be overriden by setting '_copyArray' param to true.


|p1= |PARAMETER1=
|s1= [array, key, copyArray] call [[BIS_fnc_removeFromPairs]]


| |RETURNVALUE=
|p1= array: [[Array]] - Array to search through
____________________________________________________________________________________________


|x1= <code></code> |=
|p2= key: [[String]] - Key to search for
____________________________________________________________________________________________


| |SEEALSO=
|p3= copyArray: [[Boolean]] - (Optional, default [[false]]) [[True]] to copy the array and return it, [[false]] to modify the original array
 
|r1= [[Array]] - Resulting modified array or a copy
 
|x1= <code>[[["apple",3],["pear",2]],"pear"] [[call]] [[BIS_fnc_removeFromPairs]]; {{cc|Returns <nowiki>[[</nowiki>"apple",3<nowiki>]]</nowiki>}}</code>
 
|exec= call
 
|seealso= [[find]] [[findIf]] [[BIS_fnc_findInPairs]] [[BIS_fnc_getFromPairs]] [[BIS_fnc_addToPairs]]


}}
}}
<h3 style="display:none">Notes</h3>
<h3 style="display:none">Notes</h3>
<dl class="command_description">
<dl class="command_description">

Revision as of 10:50, 15 September 2020

Hover & click on the images for description

Description

Description:
Removes an item from pair array modifying original array. This can be overriden by setting '_copyArray' param to true.
Execution:
call
Groups:
Uncategorised

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

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