You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 2, 2020. It is now read-only.
Using the example at MichaelHatherly/Docile.jl#38, suppose I wanted to get help for all push! methods associated with a MyObject. It would be nice to be able to say query(push!, (MyObject,)) or @query push!(myobject), without needing to exactly match the rest of the argument types.
If this can be achieved (and I think my own fledgling efforts at something like Docile, JuliaLang/julia#1619, did something like this), then I think MichaelHatherly/Docile.jl#38 becomes much less important.
The text was updated successfully, but these errors were encountered:
@timholy there's basic partial matching for signatures in query now. @query still behaves as before, since I found that having both partial (query) and exact (@query) matching useful. Give me a shout it's not the behaviour you were after.
Using the example at MichaelHatherly/Docile.jl#38, suppose I wanted to get help for all
push!
methods associated with aMyObject
. It would be nice to be able to sayquery(push!, (MyObject,))
or@query push!(myobject)
, without needing to exactly match the rest of the argument types.If this can be achieved (and I think my own fledgling efforts at something like Docile, JuliaLang/julia#1619, did something like this), then I think MichaelHatherly/Docile.jl#38 becomes much less important.
The text was updated successfully, but these errors were encountered: