Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | cons man page: whitespace fix in notation. | Kaz Kylheku | 2022-04-05 | 1 | -2/+2 |
| | |||||
* | equal: test cases, documentation. | Kaz Kylheku | 2022-04-05 | 2 | -0/+151 |
| | |||||
* | cons man page: new convention for undefined vars. | Kaz Kylheku | 2022-04-05 | 1 | -7/+13 |
| | |||||
* | cons man page: runaway bold. | Kaz Kylheku | 2022-04-05 | 1 | -1/+1 |
| | |||||
* | cons man page: missing periods. | Kaz Kylheku | 2022-04-05 | 1 | -2/+2 |
| | |||||
* | Add box_str function. | Kaz Kylheku | 2022-04-05 | 4 | -1/+18 |
| | |||||
* | man page: cross-ref other pages in SEE ALSO. | Kaz Kylheku | 2022-04-05 | 1 | -1/+1 |
| | |||||
* | README: give link to cppawk-cons man page. | Kaz Kylheku | 2022-04-05 | 1 | -1/+3 |
| | |||||
* | README: give links to man pages. | Kaz Kylheku | 2022-04-05 | 1 | -4/+5 |
| | |||||
* | Document sexp function. | Kaz Kylheku | 2022-04-04 | 1 | -0/+111 |
| | |||||
* | start test cases for <cons.h> material. | Kaz Kylheku | 2022-04-04 | 4 | -38/+391 |
| | | | | | | Small documentation tweak. Numerous bugfixes as a result of testing: null, endp, stringp, symbolp, box, unbox, cdr, equal all found to have some issues. | ||||
* | Starting man page for <cons.h>. | Kaz Kylheku | 2022-04-04 | 1 | -0/+775 |
| | |||||
* | Handle undefined value in type system. | Kaz Kylheku | 2022-04-04 | 1 | -1/+21 |
| | | | | New type code U indicates boxed undefined value. | ||||
* | unbox: handle nil => "nil" | Kaz Kylheku | 2022-04-04 | 1 | -0/+2 |
| | |||||
* | __li, __listar: indentation fix. | Kaz Kylheku | 2022-04-04 | 1 | -2/+2 |
| | |||||
* | box_sym: handle "nil" -> nil. | Kaz Kylheku | 2022-04-04 | 1 | -1/+1 |
| | |||||
* | New accessors stringp and symbolp. | Kaz Kylheku | 2022-04-04 | 2 | -0/+14 |
| | |||||
* | Rename sym to box_sym. | Kaz Kylheku | 2022-04-04 | 2 | -2/+2 |
| | |||||
* | Rename nump to numberp. | Kaz Kylheku | 2022-04-04 | 2 | -6/+6 |
| | |||||
* | Fix incorrect #defines for and and or. | Kaz Kylheku | 2022-04-04 | 1 | -2/+2 |
| | |||||
* | Get rid of true, false and __config_strict_false | Kaz Kylheku | 2022-04-04 | 1 | -23/+2 |
| | |||||
* | iter, vars, fun: use only cons-priv. | Kaz Kylheku | 2022-04-03 | 4 | -15/+18 |
| | |||||
* | iter: split off some macros into iter-priv. | Kaz Kylheku | 2022-04-03 | 3 | -36/+85 |
| | | | | Use only iter-priv.h in cons.h. Use cons-priv.h in iter.h. | ||||
* | cons: split into private/public. | Kaz Kylheku | 2022-04-03 | 4 | -739/+821 |
| | | | | | A couple of loop clause macros now match the public macros, requiring a little adjustment. | ||||
* | cons: rename tolisp and toawk functions. | Kaz Kylheku | 2022-04-03 | 1 | -6/+6 |
| | | | | The new terminology is box and unbox. | ||||
* | varg-priv: fix circular dep with cons. | Kaz Kylheku | 2022-04-02 | 1 | -5/+5 |
| | |||||
* | README.md: posit why cpp is so effective over awk. | Kaz Kylheku | 2022-04-01 | 1 | -1/+15 |
| | |||||
* | README: give link to testcases-iter. | Kaz Kylheku | 2022-04-01 | 1 | -1/+2 |
| | |||||
* | README: start touting loop. | Kaz Kylheku | 2022-04-01 | 1 | -1/+62 |
| | |||||
* | loop: new if combinator. | Kaz Kylheku | 2022-04-01 | 2 | -0/+43 |
| | |||||
* | loop: new clauses first_then, for_var, collect_plus. | Kaz Kylheku | 2022-03-31 | 2 | -0/+50 |
| | |||||
* | list_add: fix multiple evaluation and paren problem. | Kaz Kylheku | 2022-03-31 | 1 | -1/+6 |
| | |||||
* | iter: new minimizing, argmax, argmin clauses. | Kaz Kylheku | 2022-03-31 | 2 | -0/+78 |
| | |||||
* | iter: fix bug in list clause. | Kaz Kylheku | 2022-03-31 | 1 | -1/+1 |
| | |||||
* | loop: add summing, maximizing, while, until. | Kaz Kylheku | 2022-03-31 | 2 | -0/+108 |
| | |||||
* | iter: fix circular header inclusion issue. | Kaz Kylheku | 2022-03-31 | 1 | -4/+5 |
| | | | | | | | - Add forgotten define __CPPAWK_ITER_H. - This requires the include of "cons.h" to be moved a bit down, since that uses the doarray and whatnot. We move it above loop; "cons.h" doesn't use that. | ||||
* | Iteration test cases. | Kaz Kylheku | 2022-03-31 | 2 | -0/+229 |
| | |||||
* | Adding Lisp-inspired data and control utilities. | Kaz Kylheku | 2022-03-31 | 7 | -0/+1385 |
| | |||||
* | man cppawk-narg: use fonts in synopsis and examples. | Kaz Kylheku | 2022-03-29 | 1 | -45/+93 |
| | |||||
* | man cppawk-case: use fonts in synopsis and examples. | Kaz Kylheku | 2022-03-29 | 1 | -23/+34 |
| | |||||
* | Fix misuses of formatting macros in man pages. | Kaz Kylheku | 2022-03-29 | 3 | -157/+160 |
| | |||||
* | narg: test case exercising all arg list lengths. | Kaz Kylheku | 2022-03-29 | 1 | -0/+15 |
| | |||||
* | README: mention <narg.h>. | Kaz Kylheku | 2022-03-29 | 1 | -5/+10 |
| | |||||
* | Bump version to 20220329.20220329 | Kaz Kylheku | 2022-03-29 | 3 | -3/+3 |
| | |||||
* | narg: rename some arguments. | Kaz Kylheku | 2022-03-29 | 1 | -1/+1 |
| | |||||
* | Add cppawk-narg man page. | Kaz Kylheku | 2022-03-29 | 2 | -0/+301 |
| | |||||
* | case: add mixed clause. | Kaz Kylheku | 2022-03-29 | 4 | -3/+52 |
| | |||||
* | nargs: add splice macro. | Kaz Kylheku | 2022-03-29 | 3 | -0/+18 |
| | |||||
* | New public header <narg.h>. | Kaz Kylheku | 2022-03-29 | 3 | -0/+86 |
| | |||||
* | __revargs: rename to __revarg to rhyme with narg. | Kaz Kylheku | 2022-03-28 | 1 | -1/+1 |
| |