-
Notifications
You must be signed in to change notification settings - Fork 100
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
Reduce code duplication #64
Labels
Comments
treeowl
added a commit
to treeowl/unordered-containers
that referenced
this issue
Feb 8, 2018
Experimentally make most strict and lazy functions share code using unboxed unary tuples. I fear we may find this too expensive, but it's an idea. Needs heavy benchmarking. Addresses haskell-unordered-containers#64
treeowl
added a commit
to treeowl/unordered-containers
that referenced
this issue
Feb 8, 2018
Experimentally make most strict and lazy functions share code using unboxed unary tuples. I fear we may find this too expensive, but it's an idea. Needs heavy benchmarking. Addresses haskell-unordered-containers#64
treeowl
added a commit
to treeowl/unordered-containers
that referenced
this issue
Feb 8, 2018
Experimentally make most strict and lazy functions share code using unboxed unary tuples. I fear we may find this too expensive, but it's an idea. Needs heavy benchmarking. Addresses haskell-unordered-containers#64
treeowl
added a commit
to treeowl/unordered-containers
that referenced
this issue
Feb 8, 2018
Experimentally make most strict and lazy functions share code using unboxed unary tuples. I fear we may find this too expensive, but it's an idea. Needs heavy benchmarking. Addresses haskell-unordered-containers#64
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There's excessive code duplication in the library due to near-identical implementations of several functions. This duplication has two causes:
insert
andinsertWith
, even though the former could be implemented in terms of the latter.fromList
, we have in-place versions of some functions e.g.unsafeInsert
.insertWith
, have two implementations which only differs in the use of aseq
or two.I believe we can get rid of this duplication by implementing some generic functions that the others can be implemented in terms of and inline these hard enough.
The text was updated successfully, but these errors were encountered: