Cassandra\Type::collection PHP Метод

collection() закрытый статический публичный Метод

Initialize a Collection type
final static public collection ( cassandra\Type $type ) : cassandra\Type
$type cassandra\Type The type of values
Результат cassandra\Type The collection type
    static final function collection(Type $type)
    {
    }

Usage Example

Пример #1
0
 public function notEqualTypes()
 {
     return array(array(Type::collection(Type::varchar()), Type::collection(Type::int())), array(Type::collection(Type::collection(Type::varchar())), Type::collection(Type::collection(Type::int()))), array(Type::collection(Type::collection(Type::int())), Type::collection(Type::set(Type::int()))));
 }
All Usage Examples Of Cassandra\Type::collection