44 auto o = std::make_shared<data::List>(p);
45 for (
const auto& el : elements)
54 const std::optional<data::VariantPtr>& extends,
58 : std::make_shared<data::Dict>(p);
60 for (
const auto& [key,
value] : elements)
62 o->addElement(key,
value);
69 const std::string& typeAsString,
70 const unsigned char*
data,
73 auto o = std::make_shared<data::NDArray>(p);
75 o->setType(typeAsString);
79 : std::accumulate(std::begin(shape), std::end(shape), 1, std::multiplies<int>());
80 o->setData(
static_cast<unsigned int>(size),
data);
87 auto o = std::make_shared<data::Int>(p);
95 auto o = std::make_shared<data::Long>(p);
103 auto o = std::make_shared<data::Float>(p);
111 auto o = std::make_shared<data::Double>(p);
119 auto o = std::make_shared<data::String>(p);
127 auto o = std::make_shared<data::Bool>(p);