Change

public enum Change<T>

The computed changes from diff

  • insert: Insert an item at index
  • delete: Delete an item from index
  • replace: Replace an item at index with another item
  • move: Move the same item from this index to another index
  • Undocumented

    Declaration

    Swift

    case insert(Insert<T>)
  • Undocumented

    Declaration

    Swift

    case delete(Delete<T>)
  • Undocumented

    Declaration

    Swift

    case replace(Replace<T>)
  • Undocumented

    Declaration

    Swift

    case move(Move<T>)
  • Undocumented

    Declaration

    Swift

    public var insert: Insert<T>? { get }
  • Undocumented

    Declaration

    Swift

    public var delete: Delete<T>? { get }
  • Undocumented

    Declaration

    Swift

    public var replace: Replace<T>? { get }
  • Undocumented

    Declaration

    Swift

    public var move: Move<T>? { get }