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');
}
}
Remove where (convenience method)
void removeWhere(bool Function(T) test) {
final result = tryRemoveWhere(test);
if (result.isFailure) {
RxLogger.logError(result.errorOrNull!, context: 'Set');
}
}