Update ring_buffer.go#2
Merged
Merged
Conversation
The read tail is len-1 values back from the read head.
Owner
tailidx := headidx - rb.len + 1Is the read tail (i.e. tailidx) not |
Contributor
Author
|
Hi @peterbourgon , thank you for responding! Oh, sorry, I misunderstood "back from". I think you meant "back relative to the read direction". |
Contributor
Author
|
Sorry to bother you again — I think I'm getting confused once more. 😂 This seems to be a comment error. tailidx := headidx - rb.len + 1
// is equivalent to
tailidx := headidx - (rb.len - 1)So the read tail is Example:
- Partially filled buffer (e.g., len=3, cap=5):
Buffer: [1, 2, 3, _, _]
headidx: 2 (value 3)
tailidx: 0 (value 1)
The read tail is 2 values back from the read head.
- Fully filled buffer (e.g., len=5, cap=5):
Buffer: [1, 2, 3, 4, 5]
headidx: 4 (value 5)
tailidx: 0 (value 1)
The read tail is 4 values back from the read head. |
Owner
|
You're right, the comment should read len-1, and the expr should be |
Contributor
Author
|
@peterbourgon , review please. 🙏 |
Owner
|
Thanks! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The read tail is
len-1values back from the read head.