File

teal-src/util/hex.d.tl @ 11698:9a2a98621c73

net.server_epoll: Optimize concatenation of exactly 2 buffer chunks Saves a function call. I forget if I measured this kind of thing but IIRC infix concatenation is faster than a function call up to some number of items, but let's stop at 2 here.
author Kim Alvefur <zash@zash.se>
date Fri, 16 Jul 2021 15:40:08 +0200
parent 11432:113f3912c7cb
child 12606:6683beb96e01
line wrap: on
line source

local type s2s = function (s : string) : string
local record lib
	to : s2s
	from : s2s
end
return lib