aboutsummaryrefslogtreecommitdiffstats
path: root/lib/sol2/docs/source/api/resolve.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/resolve.rst
parente9758416b18b27a65337c28d9641afc0ee89b34b (diff)
parent7a46fa2dd3dad3f038bf8e7339bc67abca428ae6 (diff)
Started creating scripting library/namespace and added sol2 for interfacing
Diffstat (limited to 'lib/sol2/docs/source/api/resolve.rst')
-rw-r--r--lib/sol2/docs/source/api/resolve.rst69
1 files changed, 69 insertions, 0 deletions
diff --git a/lib/sol2/docs/source/api/resolve.rst b/lib/sol2/docs/source/api/resolve.rst
new file mode 100644
index 0000000..6c79f17
--- /dev/null
+++ b/lib/sol2/docs/source/api/resolve.rst
@@ -0,0 +1,69 @@
+resolve
+=======
+*utility to pick overloaded C++ function calls*
+
+
+.. code-block:: cpp
+ :caption: function: resolve C++ overload
+
+ template <typename... Args, typename F>
+ constexpr auto resolve( F f );
+
+``resolve`` is a function that is meant to help users pick a single function out of a group of overloaded functions in C++. It works for *both member and free functions* You can use it to pick overloads by specifying the signature as the first template argument. Given a collection of overloaded functions:
+
+.. code-block:: cpp
+ :linenos:
+
+ int overloaded(int x);
+ int overloaded(int x, int y);
+ int overloaded(int x, int y, int z);
+
+ struct thing {
+ int overloaded() const;
+ int overloaded(int x);
+ int overloaded(int x, int y);
+ int overloaded(int x, int y, int z);
+ };
+
+You can disambiguate them using ``resolve``:
+
+.. code-block:: cpp
+ :linenos:
+
+ auto one_argument_func = resolve<int(int)>( overloaded );
+ auto two_argument_func = resolve<int(int, int)>( overloaded );
+ auto three_argument_func = resolve<int(int, int, int)>( overloaded );
+ auto member_three_argument_func = resolve<int(int, int, int)>( &thing::overloaded );
+ auto member_zero_argument_const_func = resolve<int() const>( &thing::overloaded );
+
+It is *important* to note that ``const`` is placed at the end for when you desire const overloads. You will get compiler errors if you are not specific and do not properly disambiguate for const member functions. This resolution also becomes useful when setting functions on a :doc:`table<table>` or :doc:`state_view<state>`:
+
+.. code-block:: cpp
+ :linenos:
+
+ sol::state lua;
+
+ lua.set_function("a", resolve<int(int)>( overloaded ) );
+ lua.set_function("b", resolve<int(int, int)>( overloaded ));
+ lua.set_function("c", resolve<int(int, int, int)>( overloaded ));
+
+
+It can also be used with :doc:`sol::c_call<c_call>`:
+
+.. code-block:: cpp
+ :linenos:
+
+ sol::state lua;
+
+ auto f = sol::c_call<
+ decltype(sol::resolve<int(int, int)>(&overloaded)),
+ sol::resolve<int(int, int)>(&overloaded)
+ >;
+ lua.set_function("f", f);
+
+ lua.script("f(1, 2)");
+
+
+.. note::
+
+ You cannot use ``sol::resolve<...>(...)`` when one function is templated and it has a non-templated overload: it will always fail in this case. To resolve this, please use a manual ``static_cast<R(Args...)>( &func )`` or ``static_cast<R (T::*)(Args...)>( &T::overloaded_member_func )`` (with the right const-ness and volatile-ness and r-value/l-value qualifiers if necessary).