https://github.com/a-poor/funky.jl
A Julia package for working with function expressions.
https://github.com/a-poor/funky.jl
julia julia-language julia-package macros metaprogramming
Last synced: 10 months ago
JSON representation
A Julia package for working with function expressions.
- Host: GitHub
- URL: https://github.com/a-poor/funky.jl
- Owner: a-poor
- License: mit
- Created: 2021-05-09T01:01:53.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-07-03T01:28:44.000Z (almost 5 years ago)
- Last Synced: 2025-08-30T21:06:04.376Z (10 months ago)
- Topics: julia, julia-language, julia-package, macros, metaprogramming
- Language: Julia
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Funky.jl
_created by Austin Poor_
A julia package for working with function expressions.
## Quick-Start
```julia
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
```
## Background
I started this package when working on another Julia package,
[QuickAPI.jl](https://github.com/a-poor/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.