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