コード例 #1
0
ファイル: TypedCollection.php プロジェクト: Innmind/Immutable
 /**
  * {@inheritdoc}
  */
 public function uintersect(CollectionInterface $collection, callable $intersecter) : CollectionInterface
 {
     $this->validateCollection($collection);
     return new self($this->type, parent::uintersect($collection, $intersecter)->toPrimitive());
 }