Options
All
  • Public
  • Public/Protected
  • All
Menu

Class ObservableUndoableList<T>

A concrete implementation of an observable undoable list. Namespace for ObservableUndoableList utilities.

Type parameters

  • T

Hierarchy

Implements

Index

Constructors

constructor

Properties

Private _inCompound

_inCompound: boolean = false

Private _index

_index: number = -1

Private _isUndoable

_isUndoable: boolean = true

Private _madeCompoundChange

_madeCompoundChange: boolean = false

Private _serializer

_serializer: ISerializer<T>

Private _stack

_stack: IChangedArgs<JSONValue>[][] = []

Accessors

canRedo

  • get canRedo(): boolean

canUndo

  • get canUndo(): boolean

changed

isDisposed

  • get isDisposed(): boolean

length

  • get length(): number

type

  • get type(): "List"

Methods

Private _copyChange

Private _onListChanged

Private _redoChange

Private _undoChange

beginCompoundOperation

  • beginCompoundOperation(isUndoAble?: boolean): void

clear

  • clear(): void

clearUndo

  • clearUndo(): void

dispose

  • dispose(): void

endCompoundOperation

  • endCompoundOperation(): void

get

  • get(index: number): T | undefined
  • Get the value at the specified index.

    Parameters

    • index: number

      The positive integer index of interest.

    Returns T | undefined

    The value at the specified index.

    Undefined Behavior

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

insert

  • insert(index: number, value: T): void
  • 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.

      Undefined Behavior

      An index which is non-integral.

    Returns void

insertAll

  • insertAll(index: number, values: IterableOrArrayLike<T>): 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: IterableOrArrayLike<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.

      Undefined Behavior.

      An index which is non-integral.

    Returns void

iter

  • iter(): IIterator<T>

move

  • move(fromIndex: number, toIndex: number): void
  • Move a value from one index to another.

    parm

    fromIndex - The index of the element to move.

    Parameters

    • fromIndex: number
    • 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

push

  • push(value: T): number

pushAll

  • pushAll(values: IterableOrArrayLike<T>): number

redo

  • redo(): void

remove

  • remove(index: number): T | undefined
  • Remove and return the value at a specific index.

    Parameters

    • index: number

      The index of the value of interest.

    Returns T | undefined

    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.

removeRange

  • removeRange(startIndex: number, endIndex: number): number
  • 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.

removeValue

  • removeValue(value: T): number
  • 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

  • set(index: number, value: T): void
  • Set the value at the specified index.

    Parameters

    • index: number

      The positive integer index of interest.

    • value: T

      The value to set at the specified index.

      Complexity

      Constant.

      Iterator Validity

      No changes.

      Undefined Behavior

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

    Returns void

undo

  • undo(): void

Generated using TypeDoc