-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwww-index.scm
62 lines (52 loc) · 1.45 KB
/
www-index.scm
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
(("Pairs and lists"
"all-elements-equal"
"create-k-combinations-from-list"
"find-depth-of-list"
"find-index-of-element-in-list"
"find-most-frequent-element-in-list"
"find-stride-across-lists"
"fold-over-sublists"
"index-list"
"map-over-sublists"
"remove-duplicates-from-list"
"remove-element-from-list"
"select-first-n-elements-from-list"
"select-random-elements-from-list"
"split-list-into-groups-by-comparator"
"split-list-into-groups-of-n-elements"
"split-list-into-groups-that-are-equal-judging-by-a-procedure"
"test-if-all-items-pass-predicate"
"test-if-list-is-ordered-by-comparator")
("Association lists, property lists, and hash tables"
"filter-alist-keys")
("Data structures"
"use-lists-as-2d-matrix"
"use-list-as-stack"
"use-list-as-set"
"use-list-as-queue")
("Algorithms"
"nondeterminism-using-amb"
"topological-sort")
("Strings"
"convert-any-value-to-string"
"join-list-of-strings-with-delimiter"
"remove-whitespace-from-string"
"find-substring-in-string"
"split-string")
("Numbers"
"convert-integer-to-list-of-digits"
"convert-list-of-digits-to-integer"
"compute-pascals-triangle")
("Time"
"format-unix-timestamp")
("File system"
"find-matching-files-in-directory-tree")
("Reflection"
"get-type-of-object")
("Macros"
"bind-optional-arguments"
"check-for-symbol-in-syntax-rules"
"define-symbols"
"unicode-lambda")
("Tool integrations"
"display-unicode-symbols-in-emacs"))