ResultExtensionsLinqAnyErr(IEnumerableRes) Method

Returns whether any of the results in the collection are Err or not.

Definition

Namespace: Orx.Fun.Result
Assembly: Orx.Fun.Result (in Orx.Fun.Result.dll) Version: 1.3.0+344c8bdd6f720ccfb2d8db7c61b76cf02be18f5f
C#
public static bool AnyErr(
	this IEnumerable<Res> collection
)

Parameters

collection  IEnumerableRes
Results collection.

Return Value

Boolean

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableRes. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also