hi guys i want to find kotlin source code to learn...
# kotlin-native
m
hi guys i want to find kotlin source code to learn how they implemented.For example i want to learn how to string method implemented but i could not find it how can i find kotlin source code?
j
Usually you can navigate to implementations via the IDE (Ctrl/Cmd+click, or Ctrl/Cmd+B). Also, in the official KDoc of the standard library, there are links to the source code for different platforms. However if you mean specifically the
toString()
method of a
data class
, it is generated and you won't find its implementation, just like
componentX
and
copy
methods.