ListMove<E> constructor

ListMove<E>(
  1. List<E> _list,
  2. Predicate<E> _predicate
)

Creates a ListMove with the given backing list and predicate.

Implementation

ListMove(this._list, this._predicate);