-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprelude.red
221 lines (196 loc) · 3.97 KB
/
prelude.red
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
Red [
Title: "Prelude"
Author: "unchartedworks"
File: %prelude.red
Tabs: 4
Rights: "unchartedworks. All rights reserved."
License: "MIT"
]
and*: function [
"Boolean and"
x [logic!]
y [logic!]
][
either x == y [
either x == true [true][false]
][
false
]
]
&&: make op! :and*
or*: function [
"Boolean or"
x [logic!]
y [logic!]
][
either x == true [
true
][
either y == true [true][false]
]
]
||: make op! :or*
not': function [
"Boolean not"
x [logic!]
][
either x == true [false][true]
]
otherwise: function [
"otherwise is defined as the value True"
][
true
]
fst: function [
"Extract the first component of a pair."
xs [pair! series!]
][
case [
(pair? xs) (first xs)
((series? xs) && (2 == (length? xs))) (first xs)
otherwise (cause-error 'script 'invalid-arg [xs])
]
]
snd: function [
"Extract the second component of a pair."
xs [pair! series!]
][
case [
(pair? xs) (second xs)
((series? xs) && (2 == (length? xs))) (last xs)
otherwise (cause-error 'script 'invalid-arg [xs])
]
]
; curry: function [
; "curry converts an uncurried function to a curried function."
; f [any-function!]
; x
; ][
; func [y] reduce [:f :x 'y]
; ]
; uncurry: function [
; "curry converts an curried function to a uncurried function."
; f [any-function!]
; x
; ][
; func [y] reduce [:f :x 'y]
; ]
;;Enum
succ: function [
"the successor of a value. For numeric types, succ adds 1."
x
][
case [
(number? x) (x + 1)
(char? x) (to-char (1 + to-integer x))
true "none"]
]
pred: function [
"the predecessor of a value. For numeric types, pred subtracts 1."
x
][
case [
(number? x) (x - 1)
(char? x) && ((to-integer x) > 0) (to-char ((to-integer x) - 1))
true "none"]
]
range: function [
"generates the list [imin ... imax]."
imin [number!]
imax [number!]
][
either negative? (imax - imin) [copy []][range* imin imax]
]
range*: function [imin imax][
xs: copy reduce [imin]
len: imax - imin
repeat i :len [
xs: xs ++ reduce [imin + i]
]
xs
]
enumFromTo: :range
;;Numbers
;;negate
abs: :absolute
signum: function [
x [number!]
][
case [
(positive? x) 1
(negative? x) -1
otherwise 0
]
]
div: :divide
;;mod
divMod: function [
"simultaneous div and mod"
m [integer!]
n [integer!]
][
reduce [(divide m n) (mod m n)]
]
toInteger: :to-integer
;;Numeric
even: function [
x
][
either 0 == (mod x 2) [true][false]
]
odd: function [
x
][
either 1 == (mod x 2) [true][false]
]
;;Misc
until': function [
"until p f yields the result of applying f until p holds."
condition [any-function!]
f [any-function!]
x
][
y: x
until [
y: f y
condition y
]
y
]
;;Files
doesFileExist: function [
"if the argument file exists and is not a directory, and False otherwise"
x [file! string!]
][
path: either string? x [to-file x][x]
exists? path
]
readFile: function [
"The readFile function reads a file and returns the contents of the file as a string."
x [file! string!]
][
read either string? x [to-file x][x]
]
writeFile: function [
"The computation writeFile file str function writes the string str, to the file file."
file [file! string!]
xs [string!]
][
path: either string? file [to-file file][file]
write path xs
]
appendFile: function [
"The computation appendFile file str function appends the string str, to the file file."
file [file! string!]
xs [string!]
][
path: either string? file [to-file file][file]
write/append path xs
]
removeFile: function [
"The computation appendFile file str function appends the string str, to the file file."
file [file! string!]
][
path: either string? file [to-file file][file]
delete path
]