MathPHP\SetTheory\ImmutableSet::add PHP 메소드

add() 공개 메소드

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