aboutsummaryrefslogtreecommitdiffstats
path: root/deps/sol2/docs/source/api/variadic_results.rst
blob: 39067e162bbf086279c4e235f2e78b07916a30d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
variadic_results
================
*push multiple disparate arguments into lua*

.. code-block:: cpp
	
	struct variadic_results : std::vector<object> { ... };

This type allows someone to prepare multiple returns before returning them into Lua. It derives from ``std::vector``, so it can be used exactly like that, and objects can be added using the various constructors and functions relating to :doc:`sol::object<object>`. You can see it and other return-type helpers in action `here`_.

.. _here: https://github.com/ThePhD/sol2/blob/develop/examples/source/multi_results.cpp