CompoundEdit

class CompoundEdit(val edits: List<Edit>) : Edit

Edit that contains list of Edits lined up in the list chronologically as they were executed.

Parameters

edits

List of edits to be part of this compound edit in order they were executed.

Constructors

Link copied to clipboard
constructor(edits: List<Edit>)

Properties

Link copied to clipboard

Edits contained in this CompoundEdit.

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean

Compares this compound edit with another object for equality. Two compound edits are equal if they contain the same edits in the same order.

Link copied to clipboard
open override fun hashCode(): Int

Returns a hash code value for this compound edit based on its contained edits.