gabrielhuff

Results 8 comments of gabrielhuff

I apologize, but would you mind clarifying how this would correlate to inline classes? About the sub-bundle, it's just my opinion, but it'd make the code visually cleaner (anything that's...

Alright, appreciate the answer

@dovahkiin98 What do you mean? Where?

@dovahkiin98 The current implementation allows you to define default values. The only difference is that we are getting them from a function instead of a raw value: ```kotlin val intExtra...

IMHO delegates (in this case, specifically lazy instantiation) are perfect for this. Consider a scenario in which you need to access the same extra on different scopes. What would be...

By different scopes I mean different methods / contexts. We don't want to read the same extra from the input intent more than once (not because of performance - just...

This is an awesome idea and I can definitely see myself using this feature in different scenarios. I just have a small question. From an implementation perspective, inline classes feel...