Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/RedisGraph/RedisGraph
/ QGNode_Degree
Function
QGNode_Degree
src/graph/entities/qg_node.c:155–162 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
153
}
154
155
inline int QGNode_Degree
156
(
157
const QGNode *n
158
) {
159
ASSERT(n != NULL);
160
161
return QGNode_IncomeDegree(n) + QGNode_OutgoingDegree(n);
162
}
163
164
inline int QGNode_IncomeDegree
165
(
Callers
1
QGNode_ConnectNode
Function · 0.85
Calls
2
QGNode_IncomeDegree
Function · 0.85
QGNode_OutgoingDegree
Function · 0.85
Tested by
no test coverage detected