Roel van Dijk
Roel van Dijk
Necessary if you want to translate Haskell code using the DataKinds language extension. Note that a small hack was needed to translate a HSE KindVar to template haskell. HSE does...
**Describe the option you'd like to add** `haddock-style-parts` Option that controls the formatting of haddock comments attached to parts of a declaration. This is currently controlled by the `function-arrows` option....
Pinyin has a separate language definition in `Text.Numeral.Language.ZH`. It would be nice if this could be replaced with a transliteration function `:: String -> String` like done in the Cherokee...
The definition of English (`Text.Numeral.Language.EN`) uses an ugly hack to decide whether to put `"and"` between numerals being added. This hack depends on evaluating the `Integer` value of the expression...
```haskell x :: Double x = 9.0e3 t :: Text t = toUrlPiece x -- t == "9.0e-3" x' :: Either Text Double x' = parseUrlPiece t -- x' ==...