view teal-src/prosody/util/array.d.tl @ 14229:ce31fdde0ad1 default tip

net.unbound: Simplify conditional
author Kim Alvefur <zash@zash.se>
date Sat, 13 Jun 2026 11:35:18 +0200
parents f20c1c2c73c7
children
line wrap: on
line source

local record array_t<T> is { T }
	-- TODO methods
end

local record lib
	metamethod __call : function () : array_t
	-- TODO library functions
end

return lib