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/stdx.hpp>
22 #include <mongocxx/config/prelude.hpp>
25 MONGOCXX_INLINE_NAMESPACE_BEGIN
72 const stdx::optional<bsoncxx::document::view_or_value>&
collation()
const;
93 const stdx::optional<class hint>&
hint()
const;
98 stdx::optional<bsoncxx::document::view_or_value> _collation;
99 stdx::optional<class hint> _hint;
103 MONGOCXX_INLINE_NAMESPACE_END
106 #include <mongocxx/config/postlude.hpp>
delete_many & collation(bsoncxx::document::view_or_value collation)
Sets the collation for this delete operation.
delete_many & hint(class hint index_hint)
Sets the index to use for this operation.
Top level namespace for the MongoDB C++ driver.
Definition: bulk_write.hpp:24
const stdx::optional< class hint > & hint() const
Gets the current hint.
Class representing a MongoDB delete operation that removes multiple documents.
Definition: delete_many.hpp:31
delete_many(bsoncxx::document::view_or_value filter)
Constructs a delete operation that will delete all documents matching the filter.
const stdx::optional< bsoncxx::document::view_or_value > & collation() const
Gets the collation option for this delete operation.
Class representing a hint to be passed to a database operation.
Definition: hint.hpp:32
const bsoncxx::document::view_or_value & filter() const
Gets the filter for this delete operation.