Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
44
Edge *Path_GetEdge(const Path *p, int index) {
45
ASSERT(index >= 0 && index < Path_EdgeCount(p));
46
return &p->edges[index];
47
}
48
49
Node Path_PopNode(Path *p) {
50
return array_pop(p->nodes);
Callers
4
_CollectDeletedEntities
Function · 0.85
SIPath_Relationships
Function · 0.85
SIPath_GetRelationship
Function · 0.85
test_path
Function · 0.85
Calls
1
Path_EdgeCount
Function · 0.85
Tested by
1
test_path
Function · 0.68