Constructors
Declared in <key.h>
Construct an empty, invalid key pair.
constexpr
KeyPair() noexcept = default;
» more...
Copy-construct a key pair from another.
KeyPair(KeyPair const& other);
» more...
Move-construct a key pair from another.
constexpr
KeyPair(KeyPair&& other) noexcept = default;
» more...
| Name | Description |
|---|---|
| other | The key pair to copy from. |