aboutsummaryrefslogtreecommitdiffstats
path: root/deps/sol2/examples/source/args_from_container.cpp
blob: 0e310d8904cfee0d640adf54eef261f6eb62d6a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#define SOL_ALL_SAFETIES_ON 1
#include <sol/sol.hpp>

#include <iostream>
#include <vector>
#include <set>

int main(int , const char*[]) {
	
	std::cout << "=== args_from_container ===" << std::endl;

	sol::state lua;
	lua.open_libraries();

	lua.script("function f (a, b, c, d) print(a, b, c, d) end");

	sol::function f = lua["f"];

	std::vector<int> v2{ 3, 4 };
	f(1, 2, sol::as_args(v2));

	std::set<int> v4{ 3, 1, 2, 4 };
	f(sol::as_args(v4));

	int v3[] = { 2, 3, 4 };
	f(1, sol::as_args(v3));

	std::cout << std::endl;

	return 0;
}