(int size, byte value)
| 134 | /// Special scratch-allocation API that guarantees every byte starts with the same value while |
| 135 | /// retaining the same method-local constraints as `allocaByte(int)`. |
| 136 | public byte[] allocaByteFilled(int size, byte value) { |
| 137 | byte[] out = allocaByte(size); |
| 138 | fillByte(out, value); |
| 139 | return out; |
| 140 | } |
| 141 | |
| 142 | /// Special scratch-allocation API that guarantees every int starts with the same value while |
| 143 | /// retaining the same method-local constraints as `allocaInt(int)`. |