Returns whether any of the elements of the vector
satisfy a condition.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public virtual bool Any(
Func<T, bool> condition
)
Public Overridable Function Any (
condition As Func(Of T, Boolean)
) As Boolean
public:
virtual bool Any(
Func<T, bool>^ condition
)
abstract Any :
condition : Func<'T, bool> -> bool
override Any :
condition : Func<'T, bool> -> bool
Parameters
- condition
- Type: SystemFuncT, Boolean
Return Value
Type:
Boolean if at least one element
satisfies
condition; otherwise
.
Reference