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

Function dense_tile_starts_all_null

nodedb-array/src/tile/dense_tile.rs:108–115  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

106
107 #[test]
108 fn dense_tile_starts_all_null() {
109 let s = schema_4x4();
110 let t = DenseTile::empty(&s);
111 assert_eq!(t.cell_count(), 16);
112 for col in &t.attr_cols {
113 assert!(col.iter().all(|c| matches!(c, CellValue::Null)));
114 }
115 }
116}

Callers

nothing calls this directly

Calls 2

schema_4x4Function · 0.85
emptyFunction · 0.50

Tested by

no test coverage detected