RuntimeGeneratedFunctions.jl
RuntimeGeneratedFunctions.jl copied to clipboard
`id` variable is set to a NTuple of UInt inside of the function body
julia> ex = :(x -> id)
:(x->begin
#= REPL[19]:1 =#
id
end)
julia> f = @RuntimeGeneratedFunction ex
RuntimeGeneratedFunction(#=in Main=#, #=using Main=#, :((x,)->begin
#= REPL[19]:1 =#
id
end))
julia> f(2)
(0x57d4f9a8, 0xe781ae52, 0x562c7637, 0x4ebd110f, 0x3a467d2e)
oof, good call.