is Kotlin copy function synchronous (blocking)? I ...
# android
s
is Kotlin copy function synchronous (blocking)? I think it is but wanted to make sure.
z
Which copy function?
s
Sorry the one for Data class
z
Yes that’s synchronous
Any function that isn’t a suspend function is synchronous, generally
s
thank you.