Provides efficient assignment of cells to blueprint positions using hash table storage with automatic memory management.
Details
Assignment automatically manages memory by:
Storing only non-NULL cells
Removing cells when assigned NULL
Updating cell count metadata
Validating cell objects before storage
Examples
bp <- Table1Blueprint(5, 3)
# Assign cell
bp[1, 1] <- Cell(type = "content", content = "Variable")
# Remove cell
bp[1, 1] <- NULL
