-
Notifications
You must be signed in to change notification settings - Fork 4
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
[ new ] Seq and BoundedQueue #11
[ new ] Seq and BoundedQueue #11
Conversation
This should be ready for you to review when you have time. |
Could you please split this into two separate PRs: One for the bounded queue and one for |
Yep, I can split these into two PRs. Adding tests after sounds good. |
This PR adds
BoundedQueue
, which is likeQueue
, but has a bounded size.Additionally, since
Seq
(unsized) is utilitzed to implementBoundedQueue
,Data.Seq.Internal
,Data.Seq.Sized
, andData.Seq.Unsized
have been migrated fromcontrib
into this PR.