Cassandra\Type::set PHP Method

set() final static public method

Initialize a set type
final static public set ( cassandra\Type $type )
$type cassandra\Type [description]
    static final function set(Type $type)
    {
    }

Usage Example

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::set