74#ifndef COUCHBASE_CXX_CLIENT_DOXYGEN
78 replace(std::string path, std::vector<std::byte> value)
79 : path_(std::move(path))
80 , value_(std::move(value))
84 replace(std::string path, std::vector<std::byte> value,
bool expand_macro)
85 : path_(std::move(path))
86 , value_(std::move(value))
87 , expand_macro_(expand_macro)
92 : path_(std::move(path))
98 void encode(core::impl::subdoc::command_bundle& bundle)
const;
101 std::vector<std::byte> value_;
102 bool xattr_{
false };
103 bool expand_macro_{
false };
104 bool binary_{
false };
Definition mutate_in_specs.hxx:80
An intention to perform a SubDocument replace operation.
Definition replace.hxx:41
auto binary(bool value=true) -> replace &
Sets whether the value should be treated as a binary.
Definition replace.hxx:67
auto xattr(bool value=true) -> replace &
Sets that this is an extended attribute (xattr) field.
Definition replace.hxx:52
mutate_in_macro
Definition mutate_in_macro.hxx:29
auto to_binary(mutate_in_macro value) -> std::vector< std::byte >
Converts macro into binary array suitable for sending to the server.
Represents a single item from the result of collection::scan()
Definition allow_querying_search_index_options.hxx:28
@ replace
Replace the document, fail if it does not exist.