ekmett / tables

Deprecated because of
https://github.com/ekmett/tables/issues/15
Other
78 stars 13 forks source link

Provide a faster `fromList` for when you know there are no collisions. #9

Closed ekmett closed 11 years ago

ekmett commented 11 years ago

Palmik pointed out that we internally use xs^.table all over the various With implementations to make tables from things we took out of other tables. These are guaranteed to be distinct, and so we could avoid the needless deleteCollisions check and gain a lot of speed on queries.

ekmett commented 11 years ago

Thanks, Taneb!