index
:
txr
master
txr-old
TXR: A data munging language.
kaz@kylheku.com
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
lib.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
lib: replace generic errors with more specific errors.
Kaz Kylheku
2024-06-20
1
-78
/
+90
*
string ranges: individual positions are ascending/descending.
Kaz Kylheku
2024-06-20
1
-34
/
+9
*
length: support string ranges.
Kaz Kylheku
2024-06-20
1
-1
/
+39
*
bugfix: several seq_iter kinds need clone operation.
Kaz Kylheku
2024-06-18
1
-8
/
+18
*
iter_reset: call seq_info only when needed.
Kaz Kylheku
2024-06-17
1
-7
/
+11
*
More work on copy-iter.
Kaz Kylheku
2024-06-17
1
-10
/
+35
*
cobj: clone method streamlines copy; structs get copy method.
Kaz Kylheku
2024-06-17
1
-14
/
+6
*
New function: copy-iter.
Kaz Kylheku
2024-06-15
1
-0
/
+16
*
seq_iter: fix inadequate gc marking for some types.
Kaz Kylheku
2024-06-15
1
-6
/
+21
*
New permi: iterator version of perm.
Kaz Kylheku
2024-06-15
1
-8
/
+15
*
lib: rename seq_iter_ops static object.
Kaz Kylheku
2024-06-14
1
-9
/
+10
*
quasiliterals: buffers in hex, separation for strings and buffers.
Kaz Kylheku
2024-05-27
1
-0
/
+34
*
interpose: use seq_iter and seq_build.
Kaz Kylheku
2024-05-26
1
-7
/
+21
*
cat-str: grammar in diagnostic.
Kaz Kylheku
2024-05-03
1
-1
/
+1
*
New function: iter-cat.
Kaz Kylheku
2024-04-16
1
-0
/
+64
*
New function: lcons-force.
Kaz Kylheku
2024-04-04
1
-0
/
+12
*
append, nconc; replace implementation with seq_build.
Kaz Kylheku
2024-03-10
1
-28
/
+78
*
window-map: condense with seq_iter and seq_build.
Kaz Kylheku
2024-03-09
1
-73
/
+45
*
rfind: use seq_iter.
Kaz Kylheku
2024-03-07
1
-7
/
+8
*
find: use seq_iter.
Kaz Kylheku
2024-03-07
1
-41
/
+21
*
New function: rangeref.
Kaz Kylheku
2024-03-07
1
-1
/
+34
*
list-vec: replace int type.
Kaz Kylheku
2024-03-02
1
-2
/
+2
*
unique: covert to seq_build.
Kaz Kylheku
2024-03-02
1
-3
/
+4
*
zip: make more generic.
Kaz Kylheku
2024-03-01
1
-39
/
+0
*
partition, split, split*: iter used for indices
Kaz Kylheku
2024-02-29
1
-10
/
+14
*
partition-if: use seq_build for accumulating partitions.
Kaz Kylheku
2024-02-28
1
-4
/
+6
*
partition-by: replace sequence traversal with iter.
Kaz Kylheku
2024-02-28
1
-10
/
+13
*
partition-by: replace tuple accumulation with seq_build.
Kaz Kylheku
2024-02-28
1
-6
/
+7
*
seq_build: seq_pend must be nondestructive for lists.
Kaz Kylheku
2024-02-28
1
-1
/
+17
*
seq_build: convert list buiding to list_collect.
Kaz Kylheku
2024-02-28
1
-68
/
+9
*
seq_build: whitespace.
Kaz Kylheku
2024-02-28
1
-1
/
+1
*
seq_build: remove unnecessary convert calls.
Kaz Kylheku
2024-02-28
1
-2
/
+0
*
seq_build: remove one finish function.
Kaz Kylheku
2024-02-28
1
-6
/
+1
*
seq_build: safeguard against adding to finished object.
Kaz Kylheku
2024-02-28
1
-0
/
+14
*
mapcar, mappend: switch to seq_build.
Kaz Kylheku
2024-02-27
1
-4
/
+16
*
seq_build: support improper lists.
Kaz Kylheku
2024-02-27
1
-1
/
+53
*
tuples: convert tuple generation to seq_build.
Kaz Kylheku
2024-02-27
1
-4
/
+7
*
seq_build: fix: incompatible items must create list.
Kaz Kylheku
2024-02-27
1
-12
/
+30
*
seq_build: struct/carray bugfix.
Kaz Kylheku
2024-02-27
1
-3
/
+4
*
seq_build: put self name into structure.
Kaz Kylheku
2024-02-27
1
-15
/
+16
*
seq_build: build lists in order using tail pointer.
Kaz Kylheku
2024-02-27
1
-2
/
+19
*
separate-keys: rework using seq_build
Kaz Kylheku
2024-02-27
1
-62
/
+13
*
separate: rework using seq_build.
Kaz Kylheku
2024-02-27
1
-75
/
+13
*
seq_build: allow initialization from iterator.
Kaz Kylheku
2024-02-27
1
-0
/
+6
*
keep-keys-if: rework with generic sequence processing.
Kaz Kylheku
2024-02-26
1
-56
/
+12
*
New sequence building framework.
Kaz Kylheku
2024-02-26
1
-123
/
+207
*
keep-if: don't report as remove-if in errors.
Kaz Kylheku
2024-02-26
1
-3
/
+7
*
New function: cons-count.
Kaz Kylheku
2024-02-09
1
-0
/
+19
*
New function: cons-find.
Kaz Kylheku
2024-02-09
1
-0
/
+17
*
New function: hist-sort-by.
Kaz Kylheku
2024-02-02
1
-2
/
+7
[next]