implement value.hpp

Signed-off-by: Folling <mail@folling.io>
This commit is contained in:
Folling 2023-12-03 11:41:06 +01:00 committed by Folling
parent 8ad9869d0d
commit 2f5159beac
Signed by: folling
SSH key fingerprint: SHA256:S9qEx5WCFFLK49tE/LKnKuJYM5sw+++Dn6qJbbyxnCY
6 changed files with 93 additions and 96 deletions

View file

@ -1,6 +1,7 @@
#pragma once
#include <boost/container/vector.hpp>
#include <boost/variant2.hpp>
#include <values/value.hpp>
@ -20,5 +21,5 @@ public:
~IkarusNumberValue() override = default;
public:
boost::container::vector<data_type> value{};
boost::variant2::variant<boost::variant2::monostate, boost::container::vector<data_type>> data{};
};