PhixFlow Help

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Function: excluded()

Returns an Array of all items in one Array that are not contained within another Array.

Syntax

excluded(setA, setB)

Argument Type Description
setA Array An Array of values of any type.
setB Array An Array of values of any type.

Returns an Array of all items that are in setA that are not in setB.

Examples

excluded(["a","b","c","d","e"],["a", "c","f","d"])

Returns the Array ["b","e"].

See Also

  • No labels