Пример #1
0
 /**
  * @return bool
  * True if this is exclusively generic types
  */
 public function isGenericArray() : bool
 {
     if ($this->isEmpty()) {
         return false;
     }
     return false === $this->type_set->find(function (Type $type) : bool {
         return !$type->isGenericArray();
     });
 }