MCPcopy Create free account
hub / github.com/RedisGraph/RedisGraph / QGNode_RemoveIncomingEdge

Function QGNode_RemoveIncomingEdge

src/graph/entities/qg_node.c:215–224  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

213}
214
215inline void QGNode_RemoveIncomingEdge
216(
217 QGNode *n,
218 QGEdge *e
219) {
220 ASSERT(n != NULL);
221 ASSERT(e != NULL);
222
223 _QGNode_RemoveEdge(n->incoming_edges, e);
224}
225
226inline void QGNode_RemoveOutgoingEdge
227(

Callers 2

QueryGraph_RemoveEdgeFunction · 0.85
QGEdge_ReverseFunction · 0.85

Calls 1

_QGNode_RemoveEdgeFunction · 0.85

Tested by

no test coverage detected