mixphix
mixphix
The unary/binary polymorphism is not the same kind as you are thinking. `NFData1` works on objects of kind `k -> Type`, not on terms of the kind `Type`. In your...
`NFData1` is to `NFData` what `Eq1` is to `Eq`: a lawful typeclass. Where `Eq1` "enforces" `liftEq (==) == (==)`, we should always have `liftRnf rnf == rnf` for a `NFData1`...
Very frequently the GHC developers pin a fork of this library for internal use, and there is sometimes a discrepancy despite the best efforts of all parties to communicate. The...
Dropping the `array` dependency is fine by me. Thanks for volunteering to do that!
The `array` dependency has been dropped for version 1.6.0.0.
My apologies, I should have reviewed the PVP before releasing. I was under the impression that dropping a dependency required a major version bump. I'll re-release this as 1.5.1.0 and...
The purpose of `Num b` eludes me. I can't imagine wanting to know if a `Foldable` container has more than, say, exactly 5.2 members. If the change to `Int` is...