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

Function Path_GetEdge

src/datatypes/path/path.c:44–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

42}
43
44Edge *Path_GetEdge(const Path *p, int index) {
45 ASSERT(index >= 0 && index < Path_EdgeCount(p));
46 return &p->edges[index];
47}
48
49Node Path_PopNode(Path *p) {
50 return array_pop(p->nodes);

Callers 4

_CollectDeletedEntitiesFunction · 0.85
SIPath_RelationshipsFunction · 0.85
SIPath_GetRelationshipFunction · 0.85
test_pathFunction · 0.85

Calls 1

Path_EdgeCountFunction · 0.85

Tested by 1

test_pathFunction · 0.68