(field SimpleField, x constraint.Element)
| 31 | } |
| 32 | |
| 33 | func (o *OutputBuf) AppendFieldElement(field SimpleField, x constraint.Element) { |
| 34 | o.AppendBigInt(field.SerializedLen(), field.ToBigInt(x)) |
| 35 | } |
| 36 | |
| 37 | func (o *OutputBuf) AppendUint32(x uint32) { |
| 38 | o.buf = binary.LittleEndian.AppendUint32(o.buf, x) |
no test coverage detected