Check if msgpack bytes represent null. Msgpack null is the single byte 0xc0.
(bytes: &[u8])
| 407 | |
| 408 | /// Check if msgpack bytes represent null. Msgpack null is the single byte 0xc0. |
| 409 | fn value_bytes_are_null(bytes: &[u8]) -> bool { |
| 410 | bytes == [0xc0] |
| 411 | } |
| 412 | |
| 413 | /// FNV-1a hash for raw bytes (used by approx aggregates to feed HLL/SpaceSaving). |
| 414 | fn hash_bytes(bytes: &[u8]) -> u64 { |
no outgoing calls
no test coverage detected