You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While working on #470 I noticed this in the source of Data.IntSet.Internal:
For lowestBitSet we use wordsize-dependant implementation based on
multiplication and DeBrujn indeces, which was proposed by Edward Kmett
<http://haskell.org/pipermail/libraries/2011-September/016749.html>
The core of this implementation is fast indexOfTheOnlyBit,
which is given a Nat with exactly one bit set, and returns
its index.
Lot of effort was put in these implementations, please benchmark carefully
before changing this code.
While working on #470 I noticed this in the source of Data.IntSet.Internal:
Don't these belong in Data.Bits then, so they can be re-used? This was already suggested in
https://mail.haskell.org/pipermail/libraries/2011-September/016755.html
https://mail.haskell.org/pipermail/libraries/2011-September/016756.html
The text was updated successfully, but these errors were encountered: