MathPHP\SetTheory\ImmutableSet::add PHP Method

add() public method

Cannot add members to an immutable set
public add ( mixed $x ) : Set
$x mixed
return Set (this set unchanged)
    public function add($x) : Set
    {
        return $this;
    }