Hi, sorry I have a simple question, I have tried to RTFM. If I have a function with multiple methods and keyword arguments, all methods should share the same keyword args, right? How do I write this?
function foo(a::Int; test = true) 2+a end function foo(a::AbstractFloat #how do I continue this line? In my real-world example I have multiple methods and a long list of keyword arguments. Thanks!
