aboutsummaryrefslogtreecommitdiffstats
path: root/lib/sol2/docs/source/api/new_table.rst
diff options
context:
space:
mode:
authorAndy <drumsetmonkey@gmail.com>2019-08-29 13:07:45 -0400
committerAndy <drumsetmonkey@gmail.com>2019-08-29 13:07:45 -0400
commit4ac4b280abf2ffa28caa5a532353115a3033444f (patch)
tree2a13d658bb454360b2faf401244bb0321d3460d4 /lib/sol2/docs/source/api/new_table.rst
parente9758416b18b27a65337c28d9641afc0ee89b34b (diff)
parent7a46fa2dd3dad3f038bf8e7339bc67abca428ae6 (diff)
Started creating scripting library/namespace and added sol2 for interfacing
Diffstat (limited to 'lib/sol2/docs/source/api/new_table.rst')
-rw-r--r--lib/sol2/docs/source/api/new_table.rst23
1 files changed, 23 insertions, 0 deletions
diff --git a/lib/sol2/docs/source/api/new_table.rst b/lib/sol2/docs/source/api/new_table.rst
new file mode 100644
index 0000000..427a12b
--- /dev/null
+++ b/lib/sol2/docs/source/api/new_table.rst
@@ -0,0 +1,23 @@
+new_table
+=========
+*a table creation hint to environment/table*
+
+
+.. code-block:: cpp
+
+ struct new_table;
+
+ constexpr const new_table create = new_table{};
+
+``sol::new_table`` serves the purpose of letting you create tables using the constructor of :doc:`sol::table<table>` and :doc:`sol::environment<environment>`. It also disambiguates the other kinds of constructors, so is **necessary** to be specified. Leaving it off will result in the wrong constructor to be called, for either ``sol::table`` or ``sol::environment``.
+
+members
+-------
+
+.. code-block:: cpp
+ :caption: constructor: new_table
+ :name: sol-new_table-constructor
+
+ new_table(int sequence_hint = 0, int map_hint = 0);
+
+The constructor's sole purpose is to either let you default-constructor the type, in which case it uses the values of "0" for its two hints, or letting you specify either ``sequence_hint`` or both the ``sequence_hint`` and ``map_hint``. Each hint is a heuristic helper for Lua to allocate an appropriately sized and structured table for what you intend to do. In 99% of cases, you will most likely not care about it and thusly will just use the constant ``sol::create`` as the second argument to object-creators like ``sol::table``'s constructor. \ No newline at end of file