( styleId: number, hyperlinkId: number, width: number, )
| 368 | |
| 369 | // Pack styleId, hyperlinkId, and width into a single Int32 |
| 370 | function packWord1( |
| 371 | styleId: number, |
| 372 | hyperlinkId: number, |
| 373 | width: number, |
| 374 | ): number { |
| 375 | return (styleId << STYLE_SHIFT) | (hyperlinkId << HYPERLINK_SHIFT) | width |
| 376 | } |
| 377 | |
| 378 | // Unwritten cell as BigInt64 — both words are 0, so the 64-bit value is 0n. |
| 379 | // Used by BigInt64Array.fill() for bulk clears (resetScreen, clearRegion). |
no outgoing calls
no test coverage detected