aboutsummaryrefslogtreecommitdiffstats
path: root/cppawk-include/cons-priv.h
Commit message (Collapse)AuthorAgeFilesLines
* Restructure cppawk installation.Kaz Kylheku2022-07-021-906/+0
| | | | | | | | | cppawk now expects to be installed in some directory (typically "bin"), such that the include files are in a "share/cppawk/include" directory where "share" is a sibling of "bin". The git repository is restructured to match this shape; cppawk is moved into "bin", and the include files into "share/cppawk/include".
* fields: new parameters to select subrange.Kaz Kylheku2022-04-221-3/+24
|
* Add missing Copyright 2022 into license headers.Kaz Kylheku2022-04-161-1/+1
|
* Rename some array and field conversion functions.Kaz Kylheku2022-04-161-17/+17
| | | | | | | | atol -> values ftol -> fields ltof -> set_fields values() goes with existing keys() nicely.
* cons: document and test uniq, new uniqual function.Kaz Kylheku2022-04-151-0/+17
|
* cons: iota: document, test, improve.Kaz Kylheku2022-04-151-12/+32
|
* cons: ldiff, last, butlast: doc, tests, fixes.Kaz Kylheku2022-04-151-3/+3
|
* cons: document nth and nthcdr; add testsKaz Kylheku2022-04-141-1/+1
| | | | Fixing semantics of nth for negative values.
* cons: add ldiff, last and butlast.Kaz Kylheku2022-04-141-5/+90
|
* cons-priv: fix uses of nil that should be __nil.Kaz Kylheku2022-04-131-2/+2
|
* cons-priv: move include of varg-priv down.Kaz Kylheku2022-04-131-4/+3
| | | | This is because varg-priv.h needs __nil to be defined.
* fun now implemented by fun-priv.Kaz Kylheku2022-04-131-4/+4
|
* New function equalize.Kaz Kylheku2022-04-051-4/+26
|
* unbox: indentation fix.Kaz Kylheku2022-04-051-1/+1
|
* Add box_str function.Kaz Kylheku2022-04-051-0/+5
|
* start test cases for <cons.h> material.Kaz Kylheku2022-04-041-30/+30
| | | | | | Small documentation tweak. Numerous bugfixes as a result of testing: null, endp, stringp, symbolp, box, unbox, cdr, equal all found to have some issues.
* Handle undefined value in type system.Kaz Kylheku2022-04-041-1/+21
| | | | New type code U indicates boxed undefined value.
* unbox: handle nil => "nil"Kaz Kylheku2022-04-041-0/+2
|
* __li, __listar: indentation fix.Kaz Kylheku2022-04-041-2/+2
|
* box_sym: handle "nil" -> nil.Kaz Kylheku2022-04-041-1/+1
|
* New accessors stringp and symbolp.Kaz Kylheku2022-04-041-0/+12
|
* Rename sym to box_sym.Kaz Kylheku2022-04-041-1/+1
|
* Rename nump to numberp.Kaz Kylheku2022-04-041-5/+5
|
* Get rid of true, false and __config_strict_falseKaz Kylheku2022-04-041-23/+2
|
* iter: split off some macros into iter-priv.Kaz Kylheku2022-04-031-4/+4
| | | | Use only iter-priv.h in cons.h. Use cons-priv.h in iter.h.
* cons: split into private/public.Kaz Kylheku2022-04-031-0/+724
A couple of loop clause macros now match the public macros, requiring a little adjustment.