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

Function QGNode_RemoveOutgoingEdge

src/graph/entities/qg_node.c:226–235  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

224}
225
226inline void QGNode_RemoveOutgoingEdge
227(
228 QGNode *n,
229 QGEdge *e
230) {
231 ASSERT(n != NULL);
232 ASSERT(e != NULL);
233
234 _QGNode_RemoveEdge(n->outgoing_edges, e);
235}
236
237QGNode *QGNode_Clone
238(

Callers 2

QueryGraph_RemoveEdgeFunction · 0.85
QGEdge_ReverseFunction · 0.85

Calls 1

_QGNode_RemoveEdgeFunction · 0.85

Tested by

no test coverage detected