Click or drag to resize

ExtensionsIsDisjointT Method

Determines whether the contents of two enumerables are disjoint.

Namespace:  VDS.RDF
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public static bool IsDisjoint<T>(
	this IEnumerable<T> x,
	IEnumerable<T> y
)

Parameters

x
Type: System.Collections.GenericIEnumerableT
An Enumerable.
y
Type: System.Collections.GenericIEnumerableT
Another Enumerable.

Type Parameters

T
Type Parameter.

Return Value

Type: Boolean

[Missing <returns> documentation for "M:VDS.RDF.Extensions.IsDisjoint``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})"]

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableT. 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