File: TextBuilder.hs

package info (click to toggle)
haskell-text-builder 1.0.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 124 kB
  • sloc: haskell: 622; makefile: 3
file content (51 lines) | stat: -rw-r--r-- 777 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
module TextBuilder
  ( TextBuilder,

    -- * Accessors
    toText,
    toString,
    isEmpty,

    -- * Constructors

    -- ** Transformations
    force,
    intercalate,
    intercalateMap,

    -- ** Textual
    text,
    lazyText,
    string,
    unsafeUtf8ByteString,

    -- ** Character
    char,
    unicodeCodepoint,

    -- ** Integers

    -- *** Decimal
    decimal,
    fixedLengthDecimal,
    thousandSeparatedDecimal,

    -- *** Binary
    binary,
    prefixedBinary,

    -- *** Octal
    octal,
    prefixedOctal,

    -- *** Hexadecimal
    hexadecimal,
    prefixedHexadecimal,
  )
where

import TextBuilder.Domains.ByteString
import TextBuilder.Domains.Combinators
import TextBuilder.Domains.Digits
import TextBuilder.Domains.Other
import TextBuilderCore