| DelegatePairFilterTFilter 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)
Syntax public 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.CollectionsPairT
The pair.
Return Value
Type:
Boolean if the pair should be processed (pair is accepted); otherwise,
if the pair should not be processed (pair is rejected).
Implements
IPairFilterTFilter(PairT)Remarks
This method returns
if no
FilterCallback is set;
otherwise the filter callback is called and its result is returned.
See Also