| 1558 | } |
| 1559 | |
| 1560 | int Fory_PyWriteBasicFieldToBuffer(PyObject *value, Buffer *buffer, |
| 1561 | uint8_t type_id) { |
| 1562 | return write_primitive_item(buffer, value, type_id); |
| 1563 | } |
| 1564 | |
| 1565 | PyObject *Fory_PyReadBasicFieldFromBuffer(Buffer *buffer, uint8_t type_id) { |
| 1566 | return read_primitive_item(buffer, type_id); |
nothing calls this directly
no test coverage detected