aeson-qq icon indicating copy to clipboard operation
aeson-qq copied to clipboard

JSON quasiquoter for Haskell

Results 3 aeson-qq issues
Sort by recently updated
recently updated
newest added

A QoL improvement I had a need for this morning. This allows for `Text` keys, which were previously rejected for not being Strings which could be packed into Text. I...

I'm very happy with aeson-qq for my quite simple serializing needs along the lines of: ``` recordToJSON (Person name age) = [aesonQQ| { name: #{name}, age: #{age} |] ``` However,...