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

Function __child_left

src/util/heap.c:20–25  ·  view source on GitHub ↗

compute left child index of given parent

Source from the content-addressed store, hash-verified

18
19// compute left child index of given parent
20static int __child_left
21(
22 const int idx
23) {
24 return idx * 2 + 1;
25}
26
27// compute right child index of given parent
28static int __child_right

Callers 2

__pushdownFunction · 0.85
_Heap_printFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected