BinaryPredicateT Delegate |
The BinaryPredicate delegate type encapsulates a method that takes two
items of the same type, and returns a boolean value representating
some relationship between them. For example, checking whether two
items are equal or equivalent is one kind of binary predicate.
Namespace: X3Platform.CollectionsAssembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntaxpublic delegate bool BinaryPredicate<T>(
T item1,
T item2
)
generic<typename T>
public delegate bool BinaryPredicate(
T item1,
T item2
)
Parameters
- item1
- Type: T
The first item. - item2
- Type: T
The second item.
Type Parameters
- T
[Missing <typeparam name="T"/> documentation for "T:X3Platform.Collections.BinaryPredicate`1"]
Return Value
Type:
BooleanWhether item1 and item2 satisfy the relationship that the BinaryPredicate defines.
See Also