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

Function cson_value_fetch_double

cson/cson.c:605–609  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

603 return val->u.dbl;
604}
605int cson_value_fetch_double(cson_value const *val, cson_double_t *v)
606{
607 *v = cson_value_get_double(val);
608 return 0;
609}
610cson_value *cson_new_double(cson_double_t v)
611{
612 return cson_value_new_double(v);

Callers 1

get_doublepropFunction · 0.85

Calls 1

cson_value_get_doubleFunction · 0.85

Tested by

no test coverage detected