diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-01-23 07:25:57 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-01-23 07:25:57 -0800 |
commit | 094df64b6c3362f01f44d108f0d5fa4c102341b8 (patch) | |
tree | 440f5557241aaf136de375b988a0845648c0a7d1 /RELNOTES | |
parent | b1685e72fab5291ef2755d1e89ca729c05dc443e (diff) | |
download | txr-094df64b6c3362f01f44d108f0d5fa4c102341b8.tar.gz txr-094df64b6c3362f01f44d108f0d5fa4c102341b8.tar.bz2 txr-094df64b6c3362f01f44d108f0d5fa4c102341b8.zip |
Version 76txr-76
Diffstat (limited to 'RELNOTES')
-rw-r--r-- | RELNOTES | 35 |
1 files changed, 35 insertions, 0 deletions
@@ -1,3 +1,38 @@ + TXR 76 + 2014-01-23 + + + Features + + - New time functions: time-fields-local and time-fields-utc for obtaining + broken-down time from Epoch seconds. + + - New group-by function for constructing a hash from a list when the + list elements can be partitioned into equivalence classes tied to keys, + rather than treated individually. + + - Sweeping changes in TXR List to allow vectors and strings to be manipulated + in many situations as if they were lists. Functions like car, cdr and + mapcar work on strings and vectors. + + - New command line options -e and -p for evaluating TXR Lisp expressions + more conveniently from the command line. + + - The and, or and if special operators are now also provided as functions, + so they can be indirected upon functionally. + + - New functions conses and conses*, useful for iterating over a list + similarly to Common Lisp's maplist function. + + - New do operator (unrelated to @(do) directive) similar to op, but + geared toward doing imperative things involving special operators. + + Bugs + + - @(require ...) directive was not expanding its forms prior to evaluation. + + + TXR 75 2014-01-16 |