Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

243
Vistas
Converting java.util.function.Function to Kotlin's functional interface type

I am working with two modules that are coded in Java and Kotlin respectively, hence require some bit of interoperability.

In one of the cases the java module returns functional interfaces with the type java.util.function.Function, which is to be consumed by the kotlin code.

I could use the java type as it is. However, I would like to be able to cast this to kotlin's native type, be it kotlin.Function or kotlin.reflect.KFunction. The reason behind doing so is to be able to support a similar kotlin module as that of the java one, which surfaces functions for the client.

Is there any way to do this?

over 4 years ago · Santiago Trujillo
1 Respuestas
Responde la pregunta

0

You can't cast between them, they are just two different interfaces. But it's trivial to write conversion functions:

import java.util.function.Function

fun <A, B> Function<A, B>.toKotlin(): (A) -> B = { this.apply(it) }

fun <A, B> ((A) -> B).toJava(): Function<A, B> = Function { this(it) }

kotlin-stdlib-jdk8 could provide these, but doesn't seem to.

And of course, you can just use both Kotlin and Java lambdas/method references for both in most circumstances.

over 4 years ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda