feat(furvm): introduce handle dispatch function

This commit is contained in:
2026-06-24 14:53:50 +02:00
parent 68e1f8fda0
commit e485a7900b
+5
View File
@@ -226,6 +226,11 @@ public:
* @return The value reference.
*/
const_reference value() const { return m_value->second; }
public:
/**
* @brief Invalidates the handle without releasing.
*/
void dispatch() { m_value = nullptr; }
private:
pair_type* m_value = nullptr;
};