I need to check if built-in integers are even or odd, so I asked ChatGPT to make a function for me:
function even(x::UInt8)
if x==0 true
elseif x==1 false
elseif x==2 true
elseif x==3 false
# continue pattern
but it only did a few lines and told me to write the rest myself. Luckily Julia has first-resort metaprogramming to save a lot of typing. Expr
seems hard so I just used strings, which is just as safe.
let T = UInt8
header = "function even(x::$T)\n"
ifheader = " if x==0 true\n"
elseifs = join([" elseif x==$i $bool"
for (i, bool) in zip(1:typemax(T),
Iterators.cycle((false, true)))
], "\n")
ends = " end\nend"
join([header, ifheader, elseifs, ends])
end |> Meta.parse |> eval
Worked like a charm:
julia> join([even(UInt8(i)) for i in 0:9], ", ")
"true, false, true, false, true, false, true, false, true, false"
Problem is when I move onto bigger integer types, I get this strange parsing error after several minutes. This is what happens for T = UInt16
:
┌ Error: JuliaSyntax parser failed — falling back to flisp!
│ This is not your fault. Please submit a bug report to https://github.com/JuliaLang/JuliaSyntax.jl/issues
│ exception =
│ StackOverflowError:
│ Stacktrace:
│ [1] parse_call_chain(ps::Base.JuliaSyntax.ParseState, mark::Base.JuliaSyntax.ParseStreamPosition, is_macrocall::Bool)
│ @ Base.JuliaSyntax C:\workdir\base\JuliaSyntax\src\parser.jl:1459
...
I submitted a bug report as instructed, but does somebody with more experience in metaprogramming know of a way I can work around this long execution time and error for the rest of the builtin integer types? No rush, but I need to push to prod by today.