shithub: mc

ref: 690ab7aa8e6c56a4ae8a2bd5bce58d1df681234e
dir: /lib/std/mk.myr/

View raw version
use "alloc"

pkg std =
	generic mk	: (val : @a -> @a#)
;;

/* Takes a value, and heapifies it.

FIXME: This depends on inlining and copy propagation
in order to be efficient. Neither of those are
currently implemented. That means that this function
is not efficient.

It's still damn convenient, though, so it's in.
*/
generic mk = {val
	var p

	p = alloc()
	p# = val
	-> p
}