reduceOr method
T
reduceOr(
- T or,
- T combine(
- T,
- T
Implementation
T reduceOr(T or, T Function(T, T) combine) {
if (isEmpty) {
return or;
}
return reduce(combine);
}
T reduceOr(T or, T Function(T, T) combine) {
if (isEmpty) {
return or;
}
return reduce(combine);
}