Questions tagged [kotlin-generics]
18 questions
0
votes
1 answer
Kotlin class with generics and implementing interfcae
I'm using Kotlin in Android development and I would like to create class with two generics, one of them V must be child class of View, and class also should implement some interface MyInterface.
How to do that? I've tried something like this
class…

user3626048
- 706
- 4
- 19
- 52
0
votes
1 answer
Kotlin type mismatch
I have question about generic types, subtypes and mismatching between those. I have specific structure classes and interface. I'll show you and please explain me why the type mismatch occurs.
Let's say I'm preparing my MVP framework and I have…

Michael
- 780
- 1
- 10
- 34
0
votes
1 answer
Kotlin and generics confusion
I have some Drawers with generics:
abstract class BaseGeoDrawer
abstract class BasePolygonDrawer: BaseGeoDrawer
class TeamAreaDrawer : BasePolygonDrawer

David Corsalini
- 7,958
- 8
- 41
- 66