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

commonMain.com.squareup.workflow1.RenderingAndSnapshot.kt Maven / Gradle / Ivy

There is a newer version: 1.12.1-beta13
Show newest version
package com.squareup.workflow1

/**
 * Tuple of rendering and snapshot used by [renderWorkflowIn].
 *
 * Note that this class keeps the default identity equality
 * implementation it inherits from `Any`, rather than comparing
 * its [rendering] or [snapshot].
 */
public class RenderingAndSnapshot(
  public val rendering: RenderingT,
  public val snapshot: TreeSnapshot
) {
  public operator fun component1(): RenderingT = rendering
  public operator fun component2(): TreeSnapshot = snapshot
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy