Assignment operators
Synopses
Declared in <kernel/bitcoinkernel_wrapper.h>
Copy‐assigns by duplicating the other handle's C object.
Handle<btck_BlockSpentOutputs, &btck_block_spent_outputs_copy, &btck_block_spent_outputs_destroy>&
operator=(Handle<btck_BlockSpentOutputs, &btck_block_spent_outputs_copy, &btck_block_spent_outputs_destroy> const& other);
Move‐assigns, destroying the current object and taking other's.
Handle<btck_BlockSpentOutputs, &btck_block_spent_outputs_copy, &btck_block_spent_outputs_destroy>&
operator=(Handle<btck_BlockSpentOutputs, &btck_block_spent_outputs_copy, &btck_block_spent_outputs_destroy>&& other) noexcept;
Return Value
A reference to this handle.
Parameters
Name |
Description |
other |
The handle to copy from. |
Created with MrDocs