Hi, is there a way how to hide (at least for autoc...
# announcements
j
Hi, is there a way how to hide (at least for autocomplete) a kt function in java ?
I have kt abstract class having predefined extension function. But because not so nice usage from java I added similar definition for java (+ java iface instead of lambda to avoid messing with Unit as return)... And I'd like to "hide" the extension function for javaworld (at least for autocomplete)
d
@JvmSynthetic
j
amazing, thanks a lot