Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/RedisGraph/RedisGraph
/ Path_GetNode
Function
Path_GetNode
src/datatypes/path/path.c:39–42 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
37
}
38
39
Node *Path_GetNode(const Path *p, int index) {
40
ASSERT(index >= 0 && index < Path_NodeCount(p));
41
return &p->nodes[index];
42
}
43
44
Edge *Path_GetEdge(const Path *p, int index) {
45
ASSERT(index >= 0 && index < Path_EdgeCount(p));
Callers
5
_CollectDeletedEntities
Function · 0.85
SIPathBuilder_AppendEdge
Function · 0.85
SIPath_Nodes
Function · 0.85
SIPath_GetNode
Function · 0.85
test_path
Function · 0.85
Calls
1
Path_NodeCount
Function · 0.85
Tested by
1
test_path
Function · 0.68