MongoDB C++ Driver
mongocxx-3.6.2
|
17 #include <bsoncxx/document/view_or_value.hpp>
18 #include <bsoncxx/stdx/optional.hpp>
19 #include <mongocxx/hint.hpp>
20 #include <mongocxx/write_concern.hpp>
22 #include <mongocxx/config/prelude.hpp>
25 MONGOCXX_INLINE_NAMESPACE_BEGIN
57 const stdx::optional<bsoncxx::document::view_or_value>&
collation()
const;
104 const stdx::optional<class hint>&
hint()
const;
107 stdx::optional<bsoncxx::document::view_or_value> _collation;
108 stdx::optional<class write_concern> _write_concern;
109 stdx::optional<class hint> _hint;
113 MONGOCXX_INLINE_NAMESPACE_END
116 #include <mongocxx/config/postlude.hpp>
delete_options & hint(class hint index_hint)
Sets the index to use for this operation.
const stdx::optional< class hint > & hint() const
Gets the current hint.
Top level namespace for the MongoDB C++ driver.
Definition: bulk_write.hpp:24
Class representing a view-or-value variant type.
Definition: view_or_value.hpp:30
Class representing the server-side requirement for reporting the success of a write operation.
Definition: write_concern.hpp:56
delete_options & collation(bsoncxx::document::view_or_value collation)
Sets the collation for this operation.
delete_options & write_concern(write_concern wc)
Sets the write_concern for this operation.
Class representing a hint to be passed to a database operation.
Definition: hint.hpp:32
const stdx::optional< class write_concern > & write_concern() const
The current write_concern for this operation.
Class representing the optional arguments to a MongoDB delete operation.
Definition: delete.hpp:31
const stdx::optional< bsoncxx::document::view_or_value > & collation() const
Retrieves the current collation for this operation.