char-qq 0.1.1 → 0.1.1.1
raw patch · 2 files changed
+8/−4 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- char-qq.cabal +6/−2
- library/CharQq.hs +2/−2
char-qq.cabal view
@@ -1,8 +1,12 @@ name: char-qq-version: 0.1.1+version: 0.1.1.1 category: QuasiQuotes synopsis: Quasiquoters for characters and codepoints-description: A set of quasiquoters providing compile-time conversions between characters and codepoints.+description:+ A set of quasiquoters providing compile-time conversions between characters and codepoints.+ .+ Solves such problems as when you'd rather refer to a codepoint by a char,+ but don't want to waste your runtime computation cycles on the "ord" operation. homepage: https://github.com/metrix-ai/char-qq bug-reports: https://github.com/metrix-ai/char-qq/issues author: Nikita Volkov <nikita.y.volkov@mail.ru>
library/CharQq.hs view
@@ -30,7 +30,7 @@ dec = const (fail "Unsupported") {-|-A quasi-quoter which produces a list of unicode codepoint integral literals of a sequence of chars.+A quasi-quoter which produces a list of unicode codepoint integer literals of a sequence of chars. E.g., >>> [CharQq.ords|абв|]@@ -49,7 +49,7 @@ A quasi-quoter which produces a char literal from a codepoint. E.g., ->>> [chr|90|]+>>> [CharQq.chr|90|] 'Z' Works in the context of expressions and patterns.