how can I find all interfaces of a class that are ...
# getting-started
k
how can I find all interfaces of a class that are of certain super type? this filter expression is for some reason falsey https://pl.kotl.in/HFvJJCWMO
🧵 1
t
Wrong direction of comparison.
it.isAssignableFrom(Command::class.java)
means, can you do:
val command1 : Command1 = anything as Command
k
🤦 thank you