-
Notifications
You must be signed in to change notification settings - Fork 1
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
Store keys and values seperately #15
Conversation
Yes, I agree that this is cleaner. Thanks! |
Codecov ReportBase: 100.00% // Head: 99.57% // Decreases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## master #15 +/- ##
===========================================
- Coverage 100.00% 99.57% -0.43%
===========================================
Files 1 1
Lines 207 238 +31
===========================================
+ Hits 207 237 +30
- Misses 0 1 +1
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
I pushed some small tweaks. |
Thanks! |
I haven't thought through every implication of this, but I think this makes implementation of dictionary behaviour easier.
I implemented
get
,+
and-
with this and you getgetindex
for free then, so fixes #12 .