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 inline namespace v_noabi {
46 const bsoncxx::document::view_or_value&
filter()
const;
68 const stdx::optional<bsoncxx::document::view_or_value>&
collation()
const;
90 const stdx::optional<class hint>&
hint()
const;
93 bsoncxx::document::view_or_value _filter;
95 stdx::optional<bsoncxx::document::view_or_value> _collation;
96 stdx::optional<class hint> _hint;
103 #include <mongocxx/config/postlude.hpp>
Class representing a hint to be passed to a database operation.
Definition: hint.hpp:31
Class representing a MongoDB delete operation that removes a single document.
Definition: delete_one.hpp:31
const stdx::optional< bsoncxx::document::view_or_value > & collation() const
Gets the collation option for this delete operation.
delete_one & collation(bsoncxx::document::view_or_value collation)
Sets the collation for this delete operation.
delete_one & hint(class hint index_hint)
Sets the index to use for this operation.
delete_one(bsoncxx::document::view_or_value filter)
Constructs a delete operation that will delete the first document matching the filter.
const stdx::optional< class hint > & hint() const
Gets the current hint.
const bsoncxx::document::view_or_value & filter() const
Gets the filter on this delete operation.
The top-level namespace for mongocxx library entities.
Definition: bulk_write.hpp:24