EnumerableExtensions Class

Provides extensions methods for implementors of IEnumerableT

Definition

Namespace: SphinxConnector.FluentApi.Util
Assembly: SphinxConnector (in SphinxConnector.dll) Version: 6.1.0
C#
public static class EnumerableExtensions
Inheritance
Object    EnumerableExtensions

Methods

InT(IEnumerableT, T) Returns true if enumerable contains a value that is equal to any of the other arguments.
InT(IEnumerableT, IEnumerableT) Returns true if enumerable contains a value that is equal to any of the other arguments.
InT(IEnumerableT, String) Returns true if enumerable contains a value that is equal to any elements in the user variable.
IndexOfT Returns the index of the first element that matches the given predicate.
NotInT(IEnumerableT, T) Returns true if enumerable does not contain a value that is equal to any of the other arguments.
NotInT(IEnumerableT, IEnumerableT) Returns true if enumerable does not contain a value that is equal to any of the other arguments.
NotInT(IEnumerableT, String) Returns true if enumerable does not contain a value that is equal to any of the elements of the user variable.

See Also