All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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