If a java interface method has the signature `Sing...
# announcements
j
If a java interface method has the signature
SingleOperation<Void> someFunction()
and I'm trying to implement it in kotlin, When I create
SomeOperation
how can I return
Void
without explicitly casting the object to
SingleOperation<Void>
before returning it?