Tags: gojuno/koptional
Tags
Hide component1() destructuring from Java consumers (#30) I propose simple change that i think would be beneficial from the perspective of java consumers, namely annotating `component1()` function with kotlin's `@JvmSynthetic` As a consequence method will become invisible from Java. Long story short i think it's rather unneccesary to pollute java with a method that quite frankly doesn't say anything for them as the concept of kotlin's destructuring is simply not there. For getting actual values there is `toNullable` already so i don't see a point Right now it looks like this: 