shithub: mc

ref: d2a28cc46d5101760733f1b831287f6b9fcf1be1
dir: /lib/std/fndup.myr/

View raw version
use "alloc"
use "die"
use "sldup"
use "types"

pkg std =
	generic fndup	: (fn : @fn::function -> @fn::function)
	generic fnfree	: (fn : @fn::function -> void)
;;

generic fndup = {fn
	var repr : intptr[2]

	repr = (&fn castto(intptr[2]#))#
	repr[0] = sldup(envslice(repr[0])) castto(intptr)
	-> (&repr castto(@fn::function#))#
}

generic fnfree = {fn
	var repr : intptr[2]

	repr = (&fn castto(intptr[2]#))#
	std.slfree(envslice(repr[0]))
}

const envslice = {ep : intptr
	var env : byte#
	var szp : intptr#

	env = ep castto(byte#)
	szp = env castto(intptr#)
	-> env[:szp#]
}