GraphCombineIntersection Method |
Combines to sets of edges by intersection
Namespace:
VelocityGraph
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
Syntax public static HashSet<Edge> CombineIntersection(
HashSet<Edge> objs1,
HashSet<Edge> objs2
)
Public Shared Function CombineIntersection (
objs1 As HashSet(Of Edge),
objs2 As HashSet(Of Edge)
) As HashSet(Of Edge)
public:
static HashSet<Edge^>^ CombineIntersection(
HashSet<Edge^>^ objs1,
HashSet<Edge^>^ objs2
)
static member CombineIntersection :
objs1 : HashSet<Edge> *
objs2 : HashSet<Edge> -> HashSet<Edge>
Parameters
- objs1
- Type: System.Collections.GenericHashSetEdge
first set of edges - objs2
- Type: System.Collections.GenericHashSetEdge
second set of edges
Return Value
Type:
HashSetEdgeIntersection of sets
See Also