getTypeSet() 공개 메소드

public getTypeSet ( ) : Phan\Library\Set
리턴 Phan\Library\Set The set of simple types associated with this union type.
예제 #1
0
 /**
  * Add the given types to this type
  *
  * @return null
  */
 public function addUnionType(UnionType $union_type)
 {
     $this->type_set->addAll($union_type->getTypeSet());
 }