-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMCPrelude.hs
203 lines (164 loc) · 4.9 KB
/
MCPrelude.hs
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
{-# LANGUAGE Trustworthy #-}
{-# LANGUAGE CPP, NoImplicitPrelude, BangPatterns #-}
-----------------------------------------------------------------------------
-- |
-- Module : MCPrelude
-- Copyright : (c) The University of Glasgow 2001
-- License : BSD-style (see the file libraries/base/LICENSE)
--
-- Maintainer : [email protected]
-- Stability : stable
-- Portability : portable
--
-- MCPrelude is a modified version of the Haskell Prelude designed
-- specifically for The Monad Challenges.
--
-----------------------------------------------------------------------------
module MCPrelude (
-- * Standard types, classes and related functions
-- ** Basic data types
Bool(False, True),
(&&), (||), not, otherwise,
Ordering(LT, EQ, GT),
Char, String,
ifThenElse,
-- *** Tuples
fst, snd, curry, uncurry,
-- ** Basic type classes
Eq((==), (/=)),
Ord(compare, (<), (<=), (>=), (>), max, min),
Enum(succ, pred, toEnum, fromEnum, enumFrom, enumFromThen,
enumFromTo, enumFromThenTo),
Bounded(minBound, maxBound),
-- ** Numbers
-- *** Numeric types
Int, Integer, Float, Double,
Rational,
-- *** Numeric type classes
Num((+), (-), (*), negate, abs, signum, fromInteger),
Real(toRational),
Integral(quot, rem, div, mod, quotRem, divMod, toInteger),
Fractional((/), recip, fromRational),
Floating(pi, exp, log, sqrt, (**), logBase, sin, cos, tan,
asin, acos, atan, sinh, cosh, tanh, asinh, acosh, atanh),
RealFrac(properFraction, truncate, round, ceiling, floor),
RealFloat(floatRadix, floatDigits, floatRange, decodeFloat,
encodeFloat, exponent, significand, scaleFloat, isNaN,
isInfinite, isDenormalized, isIEEE, isNegativeZero, atan2),
-- *** Numeric functions
subtract, even, odd, gcd, lcm, (^), (^^),
fromIntegral, realToFrac,
-- ** Miscellaneous functions
id, const, (.), flip, ($), until,
-- * List operations
map, (++), filter,
null, length, (!!),
reverse,
-- ** Reducing lists (folds)
foldl, foldl1, foldr, foldr1,
-- *** Special folds
and, or, any, all,
product, sum,
concat, concatMap,
-- ** Building lists
-- *** Scans
scanl, scanl1, scanr, scanr1,
-- *** Infinite lists
iterate, repeat, replicate, cycle,
-- ** Sublists
take, drop, splitAt, takeWhile, dropWhile, span, break,
-- ** Searching lists
elem, notElem,
-- ** Zipping and unzipping lists
zip, zip3, zipWith, zipWith3, unzip, unzip3,
-- ** Functions on strings
lines, words, unlines, unwords,
-- * Converting to and from @String@
-- ** Converting to @String@
ShowS,
Show(showsPrec, showList, show),
shows,
showChar, showString, showParen,
-- ** Converting from @String@
ReadS,
Read(readsPrec, readList),
reads, readParen, read, lex,
undefined,
Seed,
mkSeed,
rand,
toLetter,
GreekData,
greekDataA,
greekDataB,
salaries,
firstNames,
lastNames,
cardRanks,
cardSuits
) where
import Data.Char
import Data.List
import Data.Tuple
import GHC.Base hiding (foldr)
import GHC.Enum
import GHC.Num
import GHC.Real
import GHC.Float
import GHC.Show
import Prelude (undefined)
import Text.Read
infixr 0 $!
ifThenElse :: Bool -> a -> a -> a
ifThenElse True a _ = a
ifThenElse False _ a = a
-- -----------------------------------------------------------------------------
-- Miscellaneous functions
-- | Strict (call-by-value) application, defined in terms of 'seq'.
($!) :: (a -> b) -> a -> b
f $! x = let !vx = x in f vx -- see #2273
#ifdef __HADDOCK__
-- | The value of @'seq' a b@ is bottom if @a@ is bottom, and otherwise
-- equal to @b@. 'seq' is usually introduced to improve performance by
-- avoiding unneeded laziness.
seq :: a -> b -> b
seq _ y = y
#endif
newtype Seed = Seed { unSeed :: Integer }
deriving (Eq,Show)
mkSeed :: Integer -> Seed
mkSeed n = Seed n
m :: Integer
m = 0x7FFFFFFF
rand :: Seed -> (Integer, Seed)
rand (Seed s) = (s', Seed s')
where
s' = (s * 16807) `mod` m
toLetter :: Integer -> Char
toLetter = chr . (ord 'a' + ) . (`mod` 26) . fromIntegral
type GreekData = [(String, [Integer])]
greekDataA :: GreekData
greekDataA = [ ("alpha", [5, 10])
, ("beta", [0, 8])
, ("gamma", [18, 47, 60])
, ("delta", [42])
]
greekDataB :: GreekData
greekDataB = [ ("phi", [53, 13])
, ("chi", [21, 8, 191])
, ("psi", [])
, ("omega", [6, 82, 144])
]
salaries :: [(String, Integer)]
salaries = [ ("alice", 105000)
, ("bob", 90000)
, ("carol", 85000)
]
firstNames :: [String]
firstNames = ["alice", "bob", "carol", "dave"]
lastNames :: [String]
lastNames = ["doe", "jones", "smith"]
cardRanks :: [Int]
cardRanks = [2, 3, 4, 5]
cardSuits :: [String]
cardSuits = ["H", "D", "C", "S"]