-
Notifications
You must be signed in to change notification settings - Fork 14
/
CHANGELOG
100 lines (58 loc) · 2.52 KB
/
CHANGELOG
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
Incompatible changes since 3.0.0
* Changed the interface in DICT for least, greatest, etc.
* Renamed COMMAND_LINE to PARSE_COMMAND_LINE, and CommandLine to ParseCommandLine
(to avoid collision with the basis).
Other changes since 3.0.0
* Added ArrayInf : ARRAY_INF.
* Added Finally : FINALLY.
* Added Pickle : PICKLE.
* Added PICKLEABLE_TYPE, PICKLEABLE_CON, IntPickleable, IntInfPickleable, StringPickleable,
DictPickleable, SetPickleable, SymbolPickleable.
* Added TOPOLOGICAL_SORT and TopologicalSort.
* Added REGEXP and RegexpFun.
* Added OptionMonad and ListMonad.
* Added ProductHashable, TripleHashable, WordHashable, and Word32Hashable.
* Added Void : VOID.
* Added map' to DICT.
* Added revapp to LIST_UTIL.
* Added wraptest to PARSING.
* Added hasPath to PATH.
* Added FULLSORT. Mergesort and Juliasort now have signature FULLSORT.
* Added MINI_DICT and HashDict.
* Better hash function for IntInf.int.
* Made reseeding more reproducible in MTRand32.
* Added IntInf operations to FROM_STRING.
-----
Incompatible changes from 2.3.0 to 3.0.0
* The dictionary interfaces have changed:
- DICT and RDICT are merged into DICT.
- PRE_DICT is deleted.
- SplayRDict is replaced by SplayDict.
- ListPreDict is replaced by ListDict.
- DictFun is deleted. Its purpose had been to extend a PRE_DICT to
a DICT.
* In streams, the fromTextInstream and fromBinInstream now close their
input streams when the end of the stream is reached. (See issue #5
on Github.)
* Several table signatures and modules are renamed:
DATALESS_IDICT -> DATALESS_TABLE
IDICT -> TABLE
MINI_DATALESS_IDICT -> MINI_DATALESS_TABLE
MINI_IDICT -> MINI_TABLE
TABLE -> CHECKPOINT_TABLE
DictTable -> DictCheckpointTable
HashTableTable -> HashTableCheckpointTable
* Deprecated Coord : COORD. Its functionality was deemed too
specialized for a library. (See issue #3 on Github.) Also
deprecated signatures and modules that depend on it:
COORDINATED_STREAM, POS, CoordinatedStream, and Pos.
Other changes from 2.3.0 to 3.0.0
* Added CommandLine : COMMAND_LINE. It provides combinators tailored
for parsing command-line arguments. (An alternative to Arguments :
ARGUMENTS.)
* The dictionary functors return the new DICT. They now support
efficient size, union, and range searches.
* Added Path : PATH. It provides utilities for manipulating Unix
paths.
* Range operations are added to SET.
* Many other things before we started keeping a change log.