mlua-extras 11.6.1

Extra helpers and functionality built on top of mlua for embedded lua development
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--- Test module documentation
test = {
	--- Some test data
	--- @type string
	data = nil,
	--- Nested module
	nested = {},
	--- Greetings
	--- @param name string Name of the person to greet
	greet = function(name) end,
	__metatable = {
		--- Meta field
		--- @type integer
		__count = nil,
	},
}

test.greet("mlua")