You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NewMemoryWriter allows for preallocation of the internal buffer via bufit.NewBuffer(bufit.NewMemoryWriter(make([]byte, 0, CAPACITY))), this can avoid stuttering since the buffer doesn't need to grow as many times to start.