MathPHP\SetTheory\SetOperationsTest::dataProviderForIsDisjoint PHP Метод

dataProviderForIsDisjoint() публичный Метод

    public function dataProviderForIsDisjoint()
    {
        return [[[], [2]], [[1], []], [[1], [2]], [[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [1.1, 2.2, -3]], [[1, 2, 3, 'a', 'b'], [4, 5, 6, 'c', 'd']], [[1, 2, 3, new Set([1, 2])], [4, 5, 6]], [[1, 2, 3, new Set([1, 2])], [4, 5, 6, new Set([2, 3])]], [[new Set([1, 2])], [new Set([2, 3])]]];
    }