-
-
Notifications
You must be signed in to change notification settings - Fork 117
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
feat(stdlib): Add mutable doubly-linked list #1845
base: main
Are you sure you want to change the base?
Conversation
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.
This implementation looks really solid. a few little documentaiton issues i noticed.
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.
Looks Good To Me.
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.
Amazing! People can start to teach Computer Science using Grain now.
This would make a great example of some idiomatic Grain!
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.
The implementation looks good here, but I have some nits with the high-level design (maybe I missed a conversation):
- I think this module should be called
Deque
, notMutable
. For one, it's not just a mutable singly-linked list, which is what I would expectList.Mutable
to be. Second, most languages (e.g. Java and Python) call these structures Deques. - With that change, I think it makes sense to pull this module out of
list.gr
and put it in its own file.
@peblair True, but I think an argument in favor of keeping it as a member of the I also think in this same way you can draw a parallel between Grain's What do you think? |
349cff5
to
5c86e4a
Compare
@peblair wanted to bump the previous comment to see what your thoughts were? |
Closes #1815
Wherever I thought it made sense, I made the list functions mutate the given list rather than producing a new list e.g.
append