We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efde894 commit e4812d5Copy full SHA for e4812d5
haskell_edsl/src/Checktestdata.hs
@@ -1,7 +1,4 @@
1
module Checktestdata (
2
- -- * Core representation
3
- CTD,
4
- runCTD,
5
6
-- * Main functionality
7
ctdMain,
@@ -10,25 +7,9 @@ module Checktestdata (
10
-- * Commandline parsers
11
8
generalOpts,
12
9
13
- -- * Primitives
14
- peekChar,
15
- nextChar,
16
- nextNat,
17
- nextHex,
18
- nextFloat,
19
-
20
- -- * Input readers
21
- nextInt,
22
- int,
23
- float,
24
- space,
25
- newline,
26
27
- -- * Utilities
28
- eof,
29
- isEOF,
30
- assert,
31
- unique) where
+ module Checktestdata.Core,
+ module Checktestdata.Derived
+ ) where
32
33
import Checktestdata.Core
34
import Checktestdata.Derived
0 commit comments