-
Notifications
You must be signed in to change notification settings - Fork 567
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
Listiter impl #1641
Listiter impl #1641
Conversation
pull master into branch
I'm not very familiar with web assembly but I can't get the test to run on my computer. Not sure if there's additional setup I need to do it or possibly its having trouble on an M1-mac which I'm using. |
I believe you're missing an entry in (I abandoned a similar PR a while back glad to see this being picked up!) |
Yes, that was exactly it. I just pushed the change adding to the web examples and all the tests ran successfully. Thanks. |
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.
A couple little things and then one genuine concern I ran into; take a look and let me know what you think?
Co-authored-by: Colin Rofls <[email protected]>
Co-authored-by: Colin Rofls <[email protected]>
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.
Thanks!
* adding ListIter implementations and examples * Changed example name, added modifying via buttons. * handling changes of Key for OrdMap and HashMap * Added lejero user, pull request detail * changelog edit * github spelling mistake * change log overwrite * formatting, adhering to standards * adding changelog entry * Added PR * Added web examples entry for list_sources.rs * Removed HashMap ListIter implementation. * Update CHANGELOG.md Co-authored-by: Colin Rofls <[email protected]> * Update druid/examples/list_sources.rs Co-authored-by: Colin Rofls <[email protected]> * Removed Unnecessary Clone * Removed HashMap Key and Value impl for ListIter and list_sources.rs example Co-authored-by: Colin Rofls <[email protected]>
Added ListIter implementations for HashMap and OrdMap. Still unsure if handling key modifications the best way, but values should be good. (This is my first PR here)