view teal-src/util/array.d.tl @ 12968:efdb7f2cd578

mod_debug_reset: New module to "reset" a running server (e.g. for testing) Plan to use this for integration tests.
author Matthew Wild <mwild1@gmail.com>
date Thu, 23 Mar 2023 14:40:51 +0000
parents 33b7e7bd83fd
children
line wrap: on
line source

local record array_t<T>
	{ T }
end

local record lib
	metamethod __call : function () : array_t
end

return lib