HH\Vector::toImmSet

Returns an immutable set (ImmSet) based on the values of the current Vector

public function toImmSet(): ImmSet<Tv>;

Returns

  • ImmSet<Tv> - An ImmSet containing the unique values of the current Vector.

Examples

This example shows that converting a Vector to an ImmSet also removes duplicate values:

// This Vector contains repetitions of 'red' and 'blue'
$v = Vector {'red', 'green', 'red', 'blue', 'red', 'yellow', 'blue'};

$imm_set = $v->toImmSet();

var_dump($imm_set is \HH\ImmSet<_>);
var_dump($imm_set);
Output
bool(true)
object(HH\ImmSet)#2 (4) {
  string(3) "red"
  string(5) "green"
  string(4) "blue"
  string(6) "yellow"
}