Extensions.IsDisjoint<T> Method |
Determines whether the contents of two enumerables are disjoint.
Namespace:
VDS.RDF
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntaxpublic static bool IsDisjoint<T>(
this IEnumerable<T> x,
IEnumerable<T> y
)
<ExtensionAttribute>
Public Shared Function IsDisjoint(Of T) (
x As IEnumerable(Of T),
y As IEnumerable(Of T)
) As Boolean
Parameters
- x
- Type: System.Collections.Generic.IEnumerable<T>
An Enumerable. - y
- Type: System.Collections.Generic.IEnumerable<T>
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
IEnumerable<T>. 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