blob: ea25454810e40c0a37820edeb509b2676fd7513f (
plain) (
blame)
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
|
(define-library (csc list)
(export
all
any
filter
foldl
foldr
intersperse
map-maybe)
(import (scheme base))
(begin
(define (any1 f l)
(and (not (null? l))
(or (f (car l))
(any1 f (cdr l)))))
(define (any f . ls)
(and (not (any1 null? ls))
(or (apply f (map car ls))
(apply any f (map cdr ls)))))
(define (all f . ls)
(or (any null? ls)
(and (apply f (map car ls))
(apply all f (map cdr ls)))))
(define (foldl f acc . ls)
(if (any null? ls)
acc
(apply foldl f (apply f acc (map car ls)) (map cdr ls))))
(define (foldr f acc . ls)
(if (any null? ls)
acc
(apply f (append (map car ls) (list (apply foldr f acc (map cdr ls)))))))
(define (map-maybe f l)
(foldr
(lambda (x acc)
(define fx (f x))
(if fx
(cons fx acc)
acc))
'()
l))
(define (filter f l)
(foldr
(lambda (x acc)
(if (f x)
(cons x acc)
acc))
'()
l))
(define (intersperse sep l)
(if (null? l)
'()
(cons (car l)
(foldr
(lambda (x acc)
(cons sep (cons x acc)))
'()
(cdr l)))))))
|