Let’s say I have two methods
"""
f(x::Integer)
Integer version of `f`.
"""
f(x::Integer) = println("I'm an integer!")
"""
f(x::Float64)
Float64 version of `f`.
"""
f(x::Float64) = println("I'm floating!")
and produce doc entries for those methods in my documentation using Documenter.jl’s @autodocs
or @docs
.
How can I refer (with @ref
) to one of the methods?
I’m searching for something like [integer version](@ref f(::Integer))
(which unfortunately does not work) rather than just [function f](@ref f)
or [f](@ref)
.
Note that for generating the doc entries @docs
has a similar feature. From the guide page:
[…] include the type in the signature with
```@docs length(::T) ```
Thanks in advance.
x-ref: julia - Documenter.jl: @ref a specific method of a function - Stack Overflow
x-ref: docs Block Methods · Issue #569 · JuliaDocs/Documenter.jl · GitHub