//export GOLUCY_Doc_Serialize func GOLUCY_Doc_Serialize(d *C.lucy_Doc, outstream *C.lucy_OutStream) { ivars := C.lucy_Doc_IVARS(d) fields := fetchDocFields(d) hash := clownfish.GoToClownfish(fields, unsafe.Pointer(C.CFISH_HASH), false) defer C.cfish_decref(hash) C.lucy_Freezer_serialize_hash((*C.cfish_Hash)(hash), outstream) C.LUCY_OutStream_Write_C32(outstream, C.uint32_t(ivars.doc_id)) }
//export GOLUCY_Doc_Serialize func GOLUCY_Doc_Serialize(d *C.lucy_Doc, outstream *C.lucy_OutStream) { ivars := C.lucy_Doc_IVARS(d) hash := (*C.cfish_Hash)(ivars.fields) C.lucy_Freezer_serialize_hash(hash, outstream) C.LUCY_OutStream_Write_C32(outstream, C.uint32_t(ivars.doc_id)) }
func (out *OutStreamIMP) WriteC32(value uint32) error { return clownfish.TrapErr(func() { self := (*C.lucy_OutStream)(clownfish.Unwrap(out, "out")) C.LUCY_OutStream_Write_C32(self, C.uint32_t(value)) }) }