MCPcopy Create free account
hub / github.com/bloomberg/comdb2 / push_int_array

Function push_int_array

lua/sp.c:5870–5875  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5868}
5869
5870static int push_int_array(Lua L, struct param_data *p)
5871{
5872 if (p->len == sizeof(int32_t)) return push_i32_array(L, p);
5873 if (p->len == sizeof(int64_t)) return push_i64_array(L, p);
5874 return -1;
5875}
5876
5877static int push_real_array(Lua L, struct param_data *p)
5878{

Callers 1

push_paramFunction · 0.85

Calls 2

push_i32_arrayFunction · 0.85
push_i64_arrayFunction · 0.85

Tested by

no test coverage detected