struct CassCollection
A collection of primitive values.
Functions
Creates a new collection.
Frees a collection instance.
Appends an “int” to the collection.
Appends a “bigint”, “counter” or “timestamp” to the collection.
Appends a “float” to the collection.
Appends a “double” to the collection.
Appends a “boolean” to the collection.
Appends a “ascii”, “text” or “varchar” to the collection.
CassError cass_collection_append_string_n
(CassCollection * collection, const char * value, size_t value_length )
Same as CassCollection::cass_collection_append_string, but with lengths for string parameters.
CassError cass_collection_append_bytes
(CassCollection * collection, const cass_byte_t * value, size_t value_size )
Appends a “blob” or “varint” to the collection.
Appends a “uuid” or “timeuuid” to the collection.
Appends an “inet” to the collection.
CassError cass_collection_append_decimal
(CassCollection * collection, const cass_byte_t * varint, size_t varint_size, cass_int32_t scale )
Appends a “decimal” to the collection.