HH\Set::fromArrays
Returns a Set
containing all the values from the specified array
(s)
public static function fromArrays(
...$argv,
): Set<Tv>;
Parameters
...$argv
- Thearray
s to convert to aSet
.
Returns
Examples
This example shows that duplicate values in the input arrays only appear once in the final Set
:
$s = Set::fromArrays(
varray['red'],
varray['green', 'blue'],
varray['yellow', 'red'], // Duplicate 'red' will be ignored
);
\var_dump($s);