HH\Lib\Dict\unique
Requires the Hack Standard Library to be installed.
Facebook Engineer?
This function is available as Dict\unique()
in Facebook's www repository.
Returns a new dict in which each value appears exactly once
namespace HH\Lib\Dict;
function unique<Tk as arraykey, Tv as arraykey>(
KeyedTraversable<Tk, Tv> $traversable,
): dict<Tk, Tv>;
In case of duplicate values, later keys will overwrite the previous ones.
For non-arraykey values, see Dict\unique_by()
.
Time complexity: O(n) Space complexity: O(n)
Parameters
Returns
dict<Tk, Tv>