Chris Done
Chris Done
This sounds awesome. So if I migrate my library to bytestring-builder, is there some `BS.Builder -> Blaze.Builder` function that users of my library can use? E.g. http-client [expects a `blaze-builder`](http://hackage.haskell.org/package/http-client-0.4.7.1/docs/Network-HTTP-Client.html#v:RequestBodyBuilder),...
@lpsmith Okay, so I should wait until packages using blaze-builder have upgraded to this version before I can start using bytestring-builder.
No problem, it seems that it'll be a straight-forward bump for package maintainers. This [stackage issue](https://github.com/fpco/stackage/issues/442) gives a good indication of what needs to be updated.
I thought about that, it could be a decent addition. Might email the authors of Haddock to see what they think.
Thanks, I've merged this into the `formatting` package, which now includes a copy of `text-format`: https://github.com/chrisdone/formatting/commit/80d210966c3518d3a6de7cfa1549e2ddad8751f9
> I guess the goal here was to make the applied field order non-specific though? Right; so then one doesn't have to worry about argument order. :+1:
That's a very attractive way to express this problem!
It’s still an interesting area generally. See also https://gist.github.com/chrisdone/8ea87b30d3897a031de3ceeec690815e I have a language with row types and I want a way to combine applicative things. I’d love to get a...
Mine’s here but it’s not a package I’m releasing, just some code in my dot emacs https://github.com/chrisdone-artificial/emacs-config/blob/artificial/packages/hiedb/hiedb.el On Fri, Oct 7, 2022, at 11:06 PM, J Kenneth King wrote: >...
Just FYI I also tried this library out and got: ```haskell {-# LANGUAGE GADTs #-} {-# LANGUAGE TemplateHaskell #-} module T where import Data.Aeson.GADT.TH data Expr a where IfE ::...