Out-edge predicate
Namespace:
QuickGraph.PredicatesAssembly: QuickGraph (in QuickGraph.dll) Version: 2.4.2.1515 (2.4.2.1515)
Syntax
| C# |
|---|
public class OutEdgePredicate : IEdgePredicate |
| Visual Basic (Declaration) |
|---|
Public Class OutEdgePredicate _ Implements IEdgePredicate |
Remarks
Applies predicates to an edge and to it's target vertex.
Given ep, the edge predicate, and vp, the vertex
predicate, for a given edge e, the predicate result is computed
as:
CopyC#ep(e) && vp(e.Target)
