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

com.netflix.spinnaker.keel.bakery.diff.OldNewPair.kt Maven / Gradle / Ivy

There is a newer version: 1.4.1
Show newest version
package com.netflix.spinnaker.keel.bakery.diff

/**
 * A simple pair of values of the same type (named [old] and [new] as opposed to Pair's first and second)..
 */
data class OldNewPair (
  val old: T,
  val new: T
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy