Return pointer to first item in vec. The items field points directly to the first element in the buffer.
(builder: LowLevelIRBuilder, vecobj: Value)
| 242 | |
| 243 | |
| 244 | def vec_items(builder: LowLevelIRBuilder, vecobj: Value) -> Value: |
| 245 | """Return pointer to first item in vec. |
| 246 | |
| 247 | The items field points directly to the first element in the buffer. |
| 248 | """ |
| 249 | return builder.get_element(vecobj, "items") |
| 250 | |
| 251 | |
| 252 | def vec_item_ptr(builder: LowLevelIRBuilder, vecobj: Value, index: Value) -> Value: |
no test coverage detected
searching dependent graphs…