diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-08-30 00:45:36 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-08-30 00:45:36 -0400 |
commit | dc2493e7525bb7633f697ef10f72b72b46222249 (patch) | |
tree | 9816755219e65d3f47fdce81c78f3736a7ddb8ab /lib/sol2/docs/source/api/nested.rst | |
parent | 9d2b31797d0cfd130802b69261df2cd402e39b49 (diff) |
Forget what I said, I just need to change git attributes to mark for vendor
Diffstat (limited to 'lib/sol2/docs/source/api/nested.rst')
-rw-r--r-- | lib/sol2/docs/source/api/nested.rst | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/lib/sol2/docs/source/api/nested.rst b/lib/sol2/docs/source/api/nested.rst new file mode 100644 index 0000000..5d7fa87 --- /dev/null +++ b/lib/sol2/docs/source/api/nested.rst @@ -0,0 +1,23 @@ +nested +====== + + +.. code-block:: cpp + + template <typename T> + struct nested { + T& value() &; + const T& value() & const; + T&& value() &&; + }; + + +``sol::nested<...>`` is a template class similar to :doc:`sol::as_table<as_table>`, but with the caveat that every :doc:`container type<../containers>` within the ``sol::nested`` type will be retrieved as a table from lua. This is helpful when you need to receive C++-style vectors, lists, and maps nested within each other: all of them will be deserialized from lua using table properties rather than anything else. + +Note that any caveats with Lua tables apply the moment it is serialized, and the data cannot be gotten out back out in C++ as a C++ type. You can deserialize the Lua table into something explicitly using the ``sol::as_table_t`` marker for your get and conversion operations using sol. At that point, the returned type is deserialized **from** a table, meaning you cannot reference any kind of C++ data directly as you do with regular userdata/usertypes. *All C++ type information is lost upon serialization into Lua.* + +The example provides a very in-depth look at both ``sol::as_table<T>`` and ``sol::nested<T>``, and how the two are equivalent. + +.. literalinclude:: ../../../examples/source/containers_as_table.cpp + :linenos: + :lines: 1-30,56-61,63-68,70- |