Check if the value at `offset` is nil.
(buf: &[u8], offset: usize)
| 367 | |
| 368 | /// Check if the value at `offset` is nil. |
| 369 | pub fn read_null(buf: &[u8], offset: usize) -> bool { |
| 370 | get(buf, offset) == Some(NIL) |
| 371 | } |
| 372 | |
| 373 | /// Read a scalar msgpack value at `offset` into `nodedb_types::Value`. |
| 374 | /// |