MCPcopy Create free account
hub / github.com/NodeDB-Lab/nodedb / write_kv_f64

Function write_kv_f64

nodedb-query/src/msgpack_scan/writer.rs:134–137  ·  view source on GitHub ↗
(buf: &mut Vec<u8>, key: &str, value: f64)

Source from the content-addressed store, hash-verified

132/// Write a key-value pair (string key, f64 value).
133#[inline]
134pub fn write_kv_f64(buf: &mut Vec<u8>, key: &str, value: f64) {
135 write_str(buf, key);
136 write_f64(buf, value);
137}
138
139/// Write a key-value pair (string key, bool value).
140#[inline]

Callers 2

apply_post_aggregationFunction · 0.85
batches_to_document_rowsFunction · 0.85

Calls 2

write_strFunction · 0.70
write_f64Function · 0.70

Tested by

no test coverage detected