( styleId: number, hyperlinkId: number, width: number, )
| 340 | |
| 341 | // Pack styleId, hyperlinkId, and width into a single Int32 |
| 342 | function packWord1( |
| 343 | styleId: number, |
| 344 | hyperlinkId: number, |
| 345 | width: number, |
| 346 | ): number { |
| 347 | return (styleId << STYLE_SHIFT) | (hyperlinkId << HYPERLINK_SHIFT) | width |
| 348 | } |
| 349 | |
| 350 | // Unwritten cell as BigInt64 — both words are 0, so the 64-bit value is 0n. |
| 351 | // Used by BigInt64Array.fill() for bulk clears (resetScreen, clearRegion). |
no outgoing calls
no test coverage detected