/
arrayIntersect
arrayIntersect
Description
Intersect between two arrays.
Parameters
Return Type
Array
Example
string[] developers= usersInGroups({"jira-developers"});
string[] administrators = usersInGroups({"jira-administrators"});
return arrayIntersect(developers, administrators);
The result returned by the function is an array that contains the unique elements found in both developers and administrators groups.
See also
, multiple selections available,
Related content
arrayIntersect
arrayIntersect
More like this
arrayIntersect
arrayIntersect
More like this
arrayDiff
arrayDiff
More like this
arrayDiff
arrayDiff
More like this
arrayUnion
arrayUnion
More like this
arrayUnion
arrayUnion
More like this