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
78 const stdx::optional<bsoncxx::document::view_or_value>&
collation()
const;
100 const stdx::optional<bool>&
upsert()
const;
122 const stdx::optional<class hint>&
hint()
const;
128 stdx::optional<bsoncxx::document::view_or_value> _collation;
129 stdx::optional<bool> _upsert;
130 stdx::optional<class hint> _hint;
134 MONGOCXX_INLINE_NAMESPACE_END
137 #include <mongocxx/config/postlude.hpp>
replace_one & upsert(bool upsert)
Sets the upsert option.
const stdx::optional< bsoncxx::document::view_or_value > & collation() const
Gets the collation option for this replacement operation.
Top level namespace for the MongoDB C++ driver.
Definition: bulk_write.hpp:24
replace_one(bsoncxx::document::view_or_value filter, bsoncxx::document::view_or_value replacement)
Constructs an update operation that will replace a single document matching the filter.
Class representing a view-or-value variant type.
Definition: view_or_value.hpp:30
replace_one & hint(class hint index_hint)
Sets the index to use for this operation.
const bsoncxx::document::view_or_value & replacement() const
Gets the replacement document.
const stdx::optional< bool > & upsert() const
Gets the current value of the upsert option.
const stdx::optional< class hint > & hint() const
Gets the current hint.
Class representing a hint to be passed to a database operation.
Definition: hint.hpp:32
Class representing a MongoDB update operation that replaces a single document.
Definition: replace_one.hpp:31
const bsoncxx::document::view_or_value & filter() const
Gets the filter for replacement.
replace_one & collation(bsoncxx::document::view_or_value collation)
Sets the collation for this replacement operation.