removeWhere method

void removeWhere(
  1. bool test(
    1. T
    )
)

Remove where (convenience method)

Implementation

void removeWhere(bool Function(T) test) {
  final result = tryRemoveWhere(test);
  if (result.isFailure) {
    RxLogger.logError(result.errorOrNull!, context: 'Set');
  }
}