#80 Can't reference a specific function overload [...
# dokka
u
#80 Can't reference a specific function overload [Kotlin/dokka] Issue created by porokoro Consider this scenario: I have two or more methods with the same name but different parameters, just simple function overloads. Then I can't reference one of them explicitly in the documentation. For example:
Copy code
class Sample {
    /**
     * If calling this, don't call [fancy] or [fancy] before [build].
     */
    fun fancy(value: String) { ... }
    fun fancy(value: Int) { ... }
    fun fancy(value: String, extra: String) { ... }
    fun build(): Something { ... }
}
Something like
[fancy(Int)]
and
[fancy(String, String)]
would be nice in the scenario, to separate the reference by parameter types and thus being able to reference one specific overload.