ListChangeNotification<E>.removed constructor

ListChangeNotification<E>.removed(
  1. E element,
  2. int pos
)

Returns notification with OperationKind.removed operation.

Implementation

ListChangeNotification.removed(this.element, this.pos)
  : op = OperationKind.removed;