File: funarray.dats

package info (click to toggle)
ats2-lang 0.4.2-3
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 40,500 kB
  • sloc: ansic: 389,898; makefile: 7,136; javascript: 1,852; lisp: 811; sh: 657; php: 573; python: 387; perl: 365
file content (453 lines) | stat: -rw-r--r-- 6,550 bytes parent folder | download | duplicates (4)
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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
(* ****** ****** *)
//
// HX-2017-10-26:
// For supporting
// "unityped" programming
//
(* ****** ****** *)
//
(*
#define
ATS_DYNLOADFLAG 1
*)
#define
ATS_PACKNAME
"ATSLIB.libats.ML.COMPILE"
//
(* ****** ****** *)
//
#include
"share/atspre_staload.hats"
//
(* ****** ****** *)
//
#staload
"libats/ML/SATS/basis.sats"
#staload
"libats/ML/SATS/list0.sats"
//
(* ****** ****** *)
//
#staload
FA =
"libats/SATS/funarray.sats"
#staload
_(*FA*) =
"libats/DATS/funarray_braunt.dats"
//
(* ****** ****** *)
//
// HX: Interface
//
(* ****** ****** *)
//
// HX: covariant
//
abstype
farray_type
( a:t@ype+ ) = ptr
//
typedef
farray(a:t@ype) = farray_type(a)
//
(* ****** ****** *)
//
exception
FarraySubscriptExn of ((*void*))
//
(* ****** ****** *)
//
extern
fun
farray_nil
  {a:type}((*void*)):<> farray(a)
extern
fun
farray_make_nil
  {a:type}((*void*)):<> farray(a)
//
(* ****** ****** *)
//
extern
fun
farray_make_list
  {a:type}(list0(INV(a))): farray(a)
//
(* ****** ****** *)
//
extern
fun
farray_size
  {a:type}(xs: farray(a)):<> intGte(0)
//
overload size with farray_size
//
(* ****** ****** *)
//
extern
fun
farray_is_nil
  {a:type}(xs: farray(a)): bool
extern
fun
farray_isnot_nil
  {a:type}(xs: farray(a)): bool
//
overload iseqz with farray_is_nil
overload isneqz with farray_isnot_nil
//
(* ****** ****** *)
//
extern
fun
farray_get_at_exn
{a:type}
(xs: farray(INV(a)), i: int): (a)
extern
fun
farray_set_at_exn
{a:type}
(xs: &farray(INV(a)) >> _, i: int, x: a): void
//
overload [] with farray_get_at_exn
overload [] with farray_set_at_exn
//
(* ****** ****** *)
//
extern
fun
farray_get_at_opt
{a:type}
(xs: farray(INV(a)), i: int):<> Option_vt(a)
extern
fun
farray_set_at_opt
{a:type}
(xs: &farray(INV(a)) >> _, i: int, x0: a): bool
//
overload get_at_opt with farray_get_at_opt
overload set_at_opt with farray_set_at_opt
//
(* ****** ****** *)
//
extern
fun
farray_foreach_cloref
{a:type}
( xs: farray(INV(a))
, fwork: cfun(a, void) ): void
and
farray_foreach_method
{a:type}
( xs: farray(INV(a)) )
( fwork: cfun(a, void) ): void
//
overload
.foreach with farray_foreach_method
//
(* ****** ****** *)
//
extern
fun
farray_iforeach_cloref
{a:type}
( xs: farray(INV(a))
, fwork: cfun(int, a, void) ): void
and
farray_iforeach_method
{a:type}
( xs: farray(INV(a)) )
( fwork: cfun(int, a, void) ): void
//
overload
.iforeach with farray_iforeach_method
//
(* ****** ****** *)
//
extern
fun
farray_foldleft_cloref
{res:type}{a:type}
( xs: farray(INV(a))
, r0: res, fwork: cfun(res, a, res) ): res
and
farray_foldleft_method
{res:type}{a:type}
( xs: farray(INV(a))
, _(*type*): TYPE(res) )
( r0: res, fwork: cfun(res, a, res) ): res
//
overload
.foldleft with farray_foldleft_method
//
(* ****** ****** *)
//
extern
fun
farray_ifoldleft_cloref
{res:type}{a:type}
( xs: farray(INV(a))
, r0: res, fwork: cfun(res, int, a, res) ): res
and
farray_ifoldleft_method
{res:type}{a:type}
( xs: farray(INV(a))
, _(*type*): TYPE(res) )
( r0: res, fwork: cfun(res, int, a, res) ): res
//
overload
.ifoldleft with farray_ifoldleft_method
//
(* ****** ****** *)
//
// HX: Implementation
//
(* ****** ****** *)
//
assume
farray_type
  (a:t@ype) = $FA.farray(a)
//
(* ****** ****** *)
//
implement
farray_nil() =
  $FA.farray_nil((*void*))
implement
farray_make_nil() =
  $FA.farray_make_nil((*void*))
//
(* ****** ****** *)
//
implement
farray_make_list
  {a}(xs) = let
  val xs = g1ofg0_list(xs)
in
  $FA.farray_make_list<a>(xs)
end // end of [farray_make_list]
//
(* ****** ****** *)
//
implement
farray_size(xs) =
$FA.farray_size(xs) where
{
//
prval() =
  $FA.lemma_farray_param(xs)
// end of [prval]
}
//
(* ****** ****** *)
//
implement
farray_is_nil
  (xs) = $FA.farray_is_nil(xs)
implement
farray_isnot_nil
  (xs) = $FA.farray_isnot_nil(xs)
//
(* ****** ****** *)

implement
farray_get_at_exn
  (xs, i) = let
//
val
opt =
farray_get_at_opt(xs, i)
//
in
  case+ opt of
  | ~Some_vt(x) => x
  | ~None_vt((*void*)) =>
     $raise FarraySubscriptExn()
end // end of [farray_get_at_exn]

implement
farray_set_at_exn
  (xs, i, x0) = let
//
val
opt =
farray_set_at_opt(xs, i, x0)
//
in
  case+ opt of
  | true(*void*) => ()
  | false(*void*) =>
     $raise FarraySubscriptExn()
end // end of [farray_set_at_exn]

(* ****** ****** *)

implement
farray_get_at_opt
  {a}(xs, i) = let
//
val i = g1ofg0(i)
//
in
//
if
(
i >= 0
) then (
$FA.farray_getopt_at<a>(xs, i)
) else None_vt() // end of [if]
//
end // end of [farray_get_at_opt]

(* ****** ****** *)

implement
farray_set_at_opt
  {a}(xs, i, x0) = let
//
val i = g1ofg0(i)
//
in
//
if (
i >= 0
) then (
$FA.farray_setopt_at<a>(xs, i, x0)
) else false(*fail*) // end of [if]
//
end // end of [farray_set_at_opt]
//
(* ****** ****** *)
//
implement
farray_foreach_cloref
  {a}(xs, fwork) = let
//
implement
$FA.farray_foreach$fwork<a><void>
  (x, env) = fwork(x)
//
in
  $FA.farray_foreach<a>(xs)
end // end of [farray_foreach_cloref]
//
implement
farray_foreach_method
  {a}(xs) =
(
lam(fwork) =>
  farray_foreach_cloref{a}(xs, fwork)
)
//
(* ****** ****** *)
//
implement
farray_iforeach_cloref
  {a}(xs, fwork) = let
//
implement
$FA.farray_foreach$fwork<a><int>
  (x, env) =
(
let
  val i = env
  val () = env := i + 1 in fwork(i, x)
end
)
//
var env: int = 0
//
in
//
$FA.farray_foreach_env<a><int>(xs, env)
//
end // end of [farray_iforeach_cloref]
//
implement
farray_iforeach_method
  {a}(xs) =
(
  lam(fdo) =>
    farray_iforeach_cloref{a}( xs, fdo )
  // end of [lam]
)
//
(* ****** ****** *)
//
implement
farray_foldleft_cloref
  {res}{a}
  (xs, r0, fwork) = let
//
implement
$FA.farray_foreach$fwork<a><res>
  (x, env) =
(
let
  val r0 = env in env := fwork(r0, x)
end
)
//
var env: res = r0
//
in
//
$FA.farray_foreach_env<a><res>(xs, env); env
//
end // end of [farray_foldleft_cloref]
//
implement
farray_foldleft_method
  {res}{a}
  (xs, type) =
(
  lam(r0, fdo) =>
    farray_foldleft_cloref{res}{a}(xs, r0, fdo)
  // end of [lam]
)
//
(* ****** ****** *)
//
implement
farray_ifoldleft_cloref
  {res}{a}
  (xs, r0, fwork) = let
//
typedef ires = @(int, res)
//
implement
$FA.farray_foreach$fwork<a><ires>
  (x, env) =
(
let
//
val i0 = env.0 and r0 = env.1
//
in
  env.0 := i0 + 1; env.1 := fwork(r0, i0, x)
end
)
//
var env: ires
val ((*init*)) = env.0 := 0
val ((*init*)) = env.1 := r0
//
in
//
$FA.farray_foreach_env<a><ires>(xs, env); env.1
//
end // end of [farray_foldleft_cloref]
//
implement
farray_ifoldleft_method
  {res}{a}
  (xs, type) =
(
  lam(r0, fdo) =>
    farray_ifoldleft_cloref{res}{a}(xs, r0, fdo)
  // end of [lam]
)
//
(* ****** ****** *)

(* end of [funarray.dats] *)