-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Add RandomAccessList #2463
Comments
That sounds a great idea. For some context, we are thinking about creating a new |
Related: #2058 |
I just assigned #2058 to myself. Hopefully, we'll get a cats-collection going soon. |
Update: The collection library dogs becomes cats-collections thanks to Stew O'Connor's donation. |
Cats-collections completed migration and is officially an external cats module now. @melrief if you are still interested in writing a Scala RandomAccessList, it is ready for you. |
Add purely functional random-access list as described in this paper by Okasaki. The random-access list support all the list operations in time O(1) and lookup/update in O(log n).
I have an implementation and I think I can add it to Cats.
The text was updated successfully, but these errors were encountered: