removeWhere method
Remove where (convenience method)
Implementation
void removeWhere(bool Function(T) test) {
final result = tryRemoveWhere(test);
if (result.isFailure) {
RxLogger.logError(result.errorOrNull!,
context: 'Set'); // coverage:ignore-line
}
}