struct CassCollection
A collection of primitive values.
Functions
CassCollection *
cass_collection_new
( type, item_count )Creates a new collection.
void
cass_collection_free
( collection )Frees a collection instance.
CassError
cass_collection_append_int32
( collection, value )Appends an “int” to the collection.
CassError
cass_collection_append_int64
( collection, value )Appends a “bigint”, “counter” or “timestamp” to the collection.
CassError
cass_collection_append_float
( collection, value )Appends a “float” to the collection.
CassError
cass_collection_append_double
( collection, value )Appends a “double” to the collection.
CassError
cass_collection_append_bool
( collection, value )Appends a “boolean” to the collection.
CassError
cass_collection_append_string
( collection, value )Appends a “ascii”, “text” or “varchar” to the collection.
CassError
cass_collection_append_bytes
( collection, value )Appends a “blob” or “varint” to the collection.
CassError
cass_collection_append_uuid
( collection, value )Appends a “uuid” or “timeuuid” to the collection.
CassError
cass_collection_append_inet
( collection, value )Appends an “inet” to the collection.
CassError
cass_collection_append_decimal
( collection, value )Appends a “decimal” to the collection.