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

io.udash.properties.seq.Patch.scala Maven / Gradle / Ivy

The newest version!
package io.udash.properties.seq

import com.avsystem.commons.misc.AbstractCase
import io.udash.properties.single.ReadableProperty

/**
 * Describes changes in SeqProperty structure.
 *
 * @param idx     Index where changes starts.
 * @param removed Properties removed from index `idx`.
 * @param added   Properties added on index `idx`.
 * @tparam P Contained properties type.
 */
final case class Patch[+P <: ReadableProperty[_]](idx: Int, removed: Seq[P], added: Seq[P]) extends AbstractCase




© 2015 - 2024 Weber Informatics LLC | Privacy Policy