I was wondering if extension properties/functions ...
# announcements
h
I was wondering if extension properties/functions would show up on jackson serialization. I run a test and they didn’t. what is the reason to it?
d
Extension functions and properties are syntactic sugar for static functions. There is no way to determine at runtime all extension functions to a given type, every function would have to be examined.
h
👍 thank you very much it makes sense now.