 | DelegatePairFilter<T>.Filter Method |
Filters the specified item pair.
Namespace: DigitalRune.Geometry.PartitioningAssembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntaxpublic bool Filter(
Pair<T> pair
)
Public Function Filter (
pair As Pair(Of T)
) As Boolean
public:
virtual bool Filter(
Pair<T> pair
) sealed
abstract Filter :
pair : Pair<'T> -> bool
override Filter :
pair : Pair<'T> -> bool
Parameters
- pair
- Type: DigitalRune.Collections.Pair<T>
The pair.
Return Value
Type:
Booleantrue if the pair should be processed (pair is accepted); otherwise,
false if the pair should not be processed (pair is rejected).
Implements
IPairFilter<T>.Filter(Pair<T>)
Remarks
This method returns
true if no
FilterCallback is set;
otherwise the filter callback is called and its result is returned.
See Also