-
Notifications
You must be signed in to change notification settings - Fork 623
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
fix(io): Improve readDelims() performance #867
Conversation
true, | ||
); | ||
}); | ||
Deno.test("[bytes] BytesList.shift 3", () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
shift 100?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's simply ordinal number.
@ry Got more improvements by using iterator. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Buffer
itself.Buffer
and introducedBytesList
that manage multiple Uint8Array like one single Uint8Array.Improvements
v2 (de049d6)
v1 (59b3c76)