dstruct ~master (2015-04-27T00:40:08Z)
Home
Dub
Repo
BasicGraph.hasEdge
dstruct
graph
BasicGraph
Check if an edge exists in the graph.
bool
hasEdge
(
ref
Vertex
left
,
ref
Vertex
right
)
bool
hasEdge
(
ref
Vertex
left
,
Vertex
right
)
bool
hasEdge
(
Vertex
left
,
ref
Vertex
right
)
bool
hasEdge
(
Vertex
left
,
Vertex
right
)
struct
BasicGraph
(Vertex, EdgeDirection edgeDirection)
bool
hasEdge
const
(
Vertex
left
,
Vertex
right
)
Return Value
Type:
bool
true if the edge exists in the graph.
Meta
Source
See Implementation
dstruct
graph
BasicGraph
functions
addEdge
addVertex
directedEdgeCount
edgeCount
hasEdge
hasVertex
removeEdge
removeVertex
properties
vertexCount
variables
isDirected
Check if an edge exists in the graph.