Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Why MarshalToSizedBuffer is in reverse order when use the latest gogofaster #743

Open
bestans opened this issue Dec 7, 2021 · 0 comments

Comments

@bestans
Copy link

bestans commented Dec 7, 2021

Now, I cannot Marshal two message into one fixed size buffer unless re-allocated buffer.

func (m *MessageHead) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  if deterministic {
    return xxx_messageInfo_MessageHead.Marshal(b, m, deterministic)
  } else {
    b = b[:cap(b)]   // Notice! MarshalToSizedBuffer will fill data into b from the end
    n, err := m.MarshalToSizedBuffer(b)
    if err != nil { 
      return nil, err
    }
    return b[:n], nil
  }
}
@bestans bestans changed the title why MarshalToSizedBuffer is in reverse order when use the latest gogofaster Why MarshalToSizedBuffer is in reverse order when use the latest gogofaster Dec 7, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant