![JAR search and dependency download from the Maven repository](/logo.png)
commonMain.com.harmony.kotlin.data.mapper.IdentityMapper.kt Maven / Gradle / Ivy
package com.harmony.kotlin.data.mapper
/**
* Mapper that returns the same object obtained
*/
class IdentityMapper : Mapper {
override fun map(from: T): T {
return from
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy