Cassandra\SetIntegrationTest::setWithScalarTypes PHP Метод

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

Data provider for sets with scalar types
public setWithScalarTypes ( )
    public function setWithScalarTypes()
    {
        return array_map(function ($cassandraType) {
            $setType = Type::set($cassandraType[0]);
            $set = $setType->create();
            foreach ($cassandraType[1] as $value) {
                $set->add($value);
            }
            return array($setType, $set);
        }, $this->scalarCassandraTypes());
    }