flip111
flip111
This looks like a nice package. Perhaps a good idea to point to a README.md and add it to hackage & stackage??
Given this purescript code ```purescript module Foo where import Data.Generic.Rep (class Generic) import Data.Argonaut.Encode.Class (class EncodeJson, encodeJson) import Data.Argonaut.Aeson.Encode.Generic (genericEncodeAeson) import Data.Argonaut.Aeson.Options as Argonaut import Data.Argonaut.Core (stringify) data Bla =...
```haskell deriving instance Eq A data Maybe' a = Nothing' | Just' a deriving (Generic, Eq) myTypes :: [SumType 'Haskell] myTypes = [ let p = (Proxy :: Proxy (Maybe'...
Out of the box using the [TypeParameters](https://www.stackage.org/haddock/nightly-2023-02-14/purescript-bridge-0.15.0.0/Language-PureScript-Bridge-TypeParameters.html#t:A) needs an additional standalone deriving like `deriving instance Eq A`. Otherwise you will get the errors below. Could this library deriving these classes...
I'm having trouble to work out how runStateC works, i would like a small example of runStateC. Also in combination with multiple conduit functions that have state. If i have...
add info about extensions
code: ``` haskell -- | -- prop> foo == 2 foo = 2 main = putStrLn "dummy" ``` shell: ``` shell » doctest Foo.hs Foo.hs:3:1: parse error on input ‘foo’...
Hello, on some commits i saw some failures in the appveyor builds with `unhandled PEi386 relocation type 0` like this one https://ci.appveyor.com/project/ndmitchell/hoogle/builds/29384890 Does someone any idea why this is happening?...
It would be cool when it's possible to define a default generator as php [attribute](https://stitcher.io/blog/attributes-in-php-8). Haskell's quickcheck also allows you to define a default implementation through the [Arbitrary typeclass](https://hackage.haskell.org/package/QuickCheck-2.14.2/docs/Test-QuickCheck.html#t:Arbitrary).
Would it be possible to add to the library something like this ```haskell -- Simple version, up/down grade is blocked when there are losses data Up = Up (a ->...