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
BitSet is extremely useful when you want to test the presence of some enumerable entity, i.e. a compact Set of Booleans.
We might want a pure one in Javaslang also.
It could be based on Scala's or Haskell's implementations.
The text was updated successfully, but these errors were encountered:
Nice idea. Basically we align to Scala (type hierarchy and naming). Looking at Haskell is better in terms of impl details because it is more clean/pure. However, when it comes to recursion we use iteration with mutable local method vars instead.
BitSet
is extremely useful when you want to test the presence of some enumerable entity, i.e. a compactSet
ofBooleans
.We might want a pure one in Javaslang also.
It could be based on Scala's or Haskell's implementations.
The text was updated successfully, but these errors were encountered: