created by Austin Poor
A julia package for working with function expressions.
julia> e = :((a::Int, b::Float64 = 2. ; k::Int = 1) -> a + b + k)
:((a::Int, b::Float64 = 2.0; k::Int = 1)->begin
#= REPL[17]:1 =#
a + b + k
end)
julia> # TODO: Explain how this package works
I started this package when working on another Julia package,
QuickAPI.jl and found myself
looking for some of this functionality. Rather than add it as a
sub-module in QuickAPI
, I figured it would be better to write it
as a separate package.