1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
# Query an Element
## In a Document
### For a Single Type
@snippet api/bsoncxx/examples/bson_documents/elements/doc_single.cpp Example
### For Multiple Types
@snippet api/bsoncxx/examples/bson_documents/elements/doc_multi.cpp Example
## In an Array
### For Single Type
@snippet api/bsoncxx/examples/bson_documents/elements/arr_single.cpp Example
### For Multiple Types
@snippet api/bsoncxx/examples/bson_documents/elements/arr_multi.cpp Example
## Comparison
### By Type
@snippet api/bsoncxx/examples/bson_documents/elements/cmp_type.cpp Example
### By BSON Value
@snippet api/bsoncxx/examples/bson_documents/elements/cmp_bson_value.cpp Example
|