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

Function cson_value_is_array

cson/cson.c:491–494  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

489 return val;
490}
491char cson_value_is_array(cson_value const *v)
492{
493 return cson__type(v) == JSON_ARRAY;
494}
495cson_array *cson_value_get_array(cson_value *val)
496{
497 return &val->u.arr;

Callers 10

get_arrpropFunction · 0.85
test_fFunction · 0.85
test_gFunction · 0.85
test_h_arrFunction · 0.85
print_valueFunction · 0.85
test_jFunction · 0.85
timepart_deserializeFunction · 0.85
_cson_extract_arrayFunction · 0.85
cson_push_valueFunction · 0.85
cson_to_tableFunction · 0.85

Calls 1

cson__typeFunction · 0.85

Tested by 5

test_fFunction · 0.68
test_gFunction · 0.68
test_h_arrFunction · 0.68
print_valueFunction · 0.68
test_jFunction · 0.68