remove method

L<T> remove(
  1. T element
)

Removes the first occurrence of element from this list.

Implementation

L<T> remove(T element) => !contains(element) ? this : LFlat<T>.unsafe(unlock..remove(element));