struct CassIterator
An object used to iterate over a group of rows, columns or collection values.
Functions
void
cass_iterator_free
( iterator )Frees an iterator instance.
CassIteratorType
cass_iterator_type
( iterator )Gets the type of the specified iterator.
cass_bool_t
cass_iterator_next
( iterator )Advance the iterator to the next row, column, or collection item.
const CassRow *
cass_iterator_get_row
( iterator )Gets the row at the result iterator’s current position.
Calling CassIterator::cass_iterator_next
will invalidate the previous row returned by this method.
const CassValue *
cass_iterator_get_column
( iterator )Gets the column value at the row iterator’s current position.
Calling CassIterator::cass_iterator_next
will invalidate the previous column returned by this method.
const CassValue *
cass_iterator_get_value
( iterator )Gets the value at the collection iterator’s current position.
Calling CassIterator::cass_iterator_next
will invalidate the previous key returned by this method.
Gets the value at the collection iterator’s current position.
Calling CassIterator::cass_iterator_next
will invalidate the previous value returned by this method.
const CassValue *
cass_iterator_get_map_key
( iterator )Gets the key at the map iterator’s current position.
Calling CassIterator::cass_iterator_next
will invalidate the previous value returned by this method.
const CassValue *
cass_iterator_get_map_value
( iterator )Gets the value at the map iterator’s current position.
Calling CassIterator::cass_iterator_next
will invalidate the previous value returned by this method.
const CassSchemaMeta *
cass_iterator_get_schema_meta
( iterator )Gets the schema metadata entry at the iterator’s current position.
Calling CassIterator::cass_iterator_next
will invalidate the previous value returned by this method.
const CassSchemaMetaField *
cass_iterator_get_schema_meta_field
( iterator )Gets the schema metadata field at the iterator’s current position.
Calling CassIterator::cass_iterator_next
will invalidate the previous value returned by this method.