Is there any way to get templates for documentatio...
# announcements
c
Is there any way to get templates for documentation in Kotlin? For example in Java if I open a javadoc comment it'll fill out params and stuff for me
Found: https://github.com/siosio/kodkod Why isn't something like this in Intellij?
h
Just use kodkod. It looks pretty neat.
g
This is intentionally. Kotlin Team believes that params and other info about method should be part of method description rather than separated declaration
2
h
method description? what do you mean andrey
g
For example
binarySearch
you can see that there is no special doc for argument
elements
, instead it used as part of method documentation
k
h
Thanks guys. Your help is always wonderful.