haskell / pretty

Haskell Pretty-printer library
Other
69 stars 30 forks source link

Support more instances of Pretty typeclass #37

Open dterei opened 8 years ago

dterei commented 8 years ago

Should support:

phadej commented 4 years ago

I wonder what Pretty should do for Word[8,16,32,64], just integral, or hex?

Lately I have been playing with stuff where all (Word32 or Word64) constants are always in hex (and dependending on application either full width (0x00000001) or not (0x1)

KiaraGrouwstra commented 4 years ago

not sure if in scope for this issue, but I'd wonder, is it also possible to automatically derive Pretty instances for data records?