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

commonMain.com.bselzer.ktx.compose.ui.layout.merge.Merge.kt Maven / Gradle / Ivy

There is a newer version: 6.5.0
Show newest version
package com.bselzer.ktx.compose.ui.layout.merge

/**
 * Merges this object with the other object by taking the [other] object if it is not the [default], otherwise taking this object.
 */
internal fun  T.safeMerge(other: T, default: T): T = if (other != default) other else this




© 2015 - 2024 Weber Informatics LLC | Privacy Policy