Dmitrii Kovanikov
Dmitrii Kovanikov
I would appreciate having pretty printer for toml data type. I don't think you need to put this into separate library. As for me, having in pretty-printing is very important....
Also, would be good to have documentation for `makeCap` function at least...
@popara Thanks for the suggestion! For now, the workaround I'm using: pushing with half of the dependencies commented to make in time, then `stack` caches built dependencies, and I push...
@lucazulian The idea here is to use generic capabilities of `servant` to impose structure on our endpoints. The root of all endpoints should be split into two parts: protected and...
The reason for having `whenJust :: Monoid m => Maybe a -> (a -> m) -> m` type is because sometimes we want something like `foldMap` for `Maybe` but nobody...
@int-index I was thinking on `viaNonEmpty` but this is too long. Propose better name.
Seems related: * https://stackoverflow.com/questions/48848571/generalised-newtype-deriving-on-class-functions-with-functors
Another relevant discussion: * https://www.reddit.com/r/haskell/comments/81vtjy/we_have_foldable_and_traversable_are_there_any/
@int-index @Martoon-00 Overloading, especially with `IsString` has bigger impact to resolving ambiguity. After that change it's no longer possible to write some simple code without `-XTypeApplications`. Backpack seems like better...
@int-index Okay, after thinking a little bit more I understood that it can't help. You want to be able to use both versions of `readFile`: to `Text` and to `ByteString`...