Class ObservableUndoableList<T>

A concrete implementation of an observable undoable list.

Type Parameters

  • T

Hierarchy

Implements

Constructors

Properties

_copyChange: any

Copy a change as JSON.

_inCompound: any
_index: any
_isUndoable: any
_madeCompoundChange: any
_onListChanged: any

Handle a change in the list.

_redoChange: any

Redo a change event.

_serializer: any
_stack: any
_undoChange: any

Undo a change event.

Accessors

  • get canRedo(): boolean
  • Whether the object can redo changes.

    Returns boolean

  • get canUndo(): boolean
  • Whether the object can undo changes.

    Returns boolean

  • get isDisposed(): boolean
  • Test whether the list has been disposed.

    Returns boolean

  • get length(): number
  • The length of the list.

    Returns number

  • get type(): "List"
  • The type of this object.

    Returns "List"

Methods

  • Begin a compound operation.

    Parameters

    • Optional isUndoAble: boolean

      Whether the operation is undoable. The default is true.

    Returns void

  • Clear the change stack.

    Returns void

  • Get the value at the specified index.

    Parameters

    • index: number

      The positive integer index of interest.

    Returns T

    The value at the specified index.

    Undefined Behavior

    An index which is non-integral or out of range.

  • Insert a value into the list at a specific index.

    Parameters

    • index: number

      The index at which to insert the value.

    • value: T

      The value to set at the specified index.

      Complexity

      Linear.

      Iterator Validity

      No changes.

      Notes

      The index will be clamped to the bounds of the list.

      By convention, the oldIndex is set to -2 to indicate an insert operation.

      The value -2 as oldIndex can be used to distinguish from the push method which will use a value -1.

      Undefined Behavior

      An index which is non-integral.

    Returns void

  • Insert a set of items into the list at the specified index.

    Parameters

    • index: number

      The index at which to insert the values.

    • values: Iterable<T>

      The values to insert at the specified index.

      Complexity.

      Linear.

      Iterator Validity

      No changes.

      Notes

      The index will be clamped to the bounds of the list. By convention, the oldIndex is set to -2 to indicate an insert operation.

      Undefined Behavior.

      An index which is non-integral.

    Returns void

  • Move a value from one index to another.

    Parameters

    • fromIndex: number

      The index of the element to move.

    • toIndex: number

      The index to move the element to.

      Complexity

      Constant.

      Iterator Validity

      Iterators pointing at the lesser of the fromIndex and the toIndex and beyond are invalidated.

      Undefined Behavior

      A fromIndex or a toIndex which is non-integral.

    Returns void

  • Add a value to the end of the list.

    Parameters

    • value: T

      The value to add to the end of the list.

    Returns number

    The new length of the list.

    Complexity

    Constant.

    Notes

    By convention, the oldIndex is set to -1 to indicate an push operation.

    Iterator Validity

    No changes.

  • Push a set of values to the back of the list.

    Parameters

    • values: Iterable<T>

      An iterable set of values to add.

    Returns number

    The new length of the list.

    Complexity

    Linear.

    Notes

    By convention, the oldIndex is set to -1 to indicate an push operation.

    Iterator Validity

    No changes.

  • Redo an operation.

    Returns void

  • Remove and return the value at a specific index.

    Parameters

    • index: number

      The index of the value of interest.

    Returns T

    The value at the specified index, or undefined if the index is out of range.

    Complexity

    Constant.

    Iterator Validity

    Iterators pointing at the removed value and beyond are invalidated.

    Undefined Behavior

    An index which is non-integral.

  • Remove a range of items from the list.

    Parameters

    • startIndex: number

      The start index of the range to remove (inclusive).

    • endIndex: number

      The end index of the range to remove (exclusive).

    Returns number

    The new length of the list.

    Complexity

    Linear.

    Iterator Validity

    Iterators pointing to the first removed value and beyond are invalid.

    Undefined Behavior

    A startIndex or endIndex which is non-integral.

  • Remove the first occurrence of a value from the list.

    Parameters

    • value: T

      The value of interest.

    Returns number

    The index of the removed value, or -1 if the value is not contained in the list.

    Complexity

    Linear.

    Iterator Validity

    Iterators pointing at the removed value and beyond are invalidated.

  • Set the value at the specified index.

    Parameters

    Returns void

  • Undo an operation.

    Returns void

Generated using TypeDoc