_free

func _free(ptr: RawPtr) 'alloc -> Void

Release one reference to a raw allocation (frees at zero). Static data is unmanaged: freeing it is a no-op.

View Source
pub func _free(ptr: RawPtr) 'alloc -> Void {
	#_ir(ptr) { free $0 }
}