File

teal-src/util/bitcompat.d.tl @ 12921:d238633a9d67

core.moduleapi: Record reverse dependencies Useful to know why a module was auto-loaded without having to dig trough all other modules for the one that depends on it.
author Kim Alvefur <zash@zash.se>
date Sun, 05 Mar 2023 14:07:08 +0100
parent 12620:09d86413c3c5
line wrap: on
line source

local record lib
	band : function (integer, integer, ... : integer) : integer
	bor : function (integer, integer, ... : integer) : integer
	bxor : function (integer, integer, ... : integer) : integer
	lshift : function (integer, integer) : integer
	rshift : function (integer, integer) : integer
end
return lib