just started using Unitful.jl, and it looks great. I wanted to define a function that takes, as a first argument, some length, and as second argument something inverse length. First one is no problem, but despite trying all variations that came to my mind and looking for info in the Unitful documentation, I didn’t find how to do it. So, ideally I would like to do something like:
f1(a::Unitful.Length, b::Unitful.Length^-1) = […]
but I don’t seem to get the syntax right for the second argument.