Orx.Fun.Result (C#)
C#
Show/Hide TOC
Result
Extensions
Reduce Method
Overload List
Reduce(IEnumerable
Res
)
Reduces the collection of results to a single result:
returns Ok when all results are Ok;
Ok if the collection is empty;
the first Err otherwise.
Reduce
T
(IEnumerable
Res
T
)
Reduces the collection of results to result of list of values:
returns Ok(List<T>) when all results are Ok;
Ok(empty list of T) if the collection is empty;
the first Err otherwise.
See Also
Reference
ResultExtensions Class
Orx.Fun.Result Namespace
In This Article
Overload List
See Also