removeMany method

L<T> removeMany(
  1. T element
)

Implementation

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