public function vDiff(Collection $other, \Closure $function = null)
    {
        if (is_null($function)) {
            return new static(\array_diff($this->getArrayCopy(), $other->getArrayCopy()), $this->type);
        }