post-scarcity/src/c/ops
2026-05-03 17:26:53 +01:00
..
assoc.c Working on eval/apply. Unfinished, does not build. More significantly, 2026-04-25 21:52:05 +01:00
assoc.h More code, closer to working, still builds. 2026-04-15 22:47:44 +01:00
bind.c Still doesn't compile, but I think excellent progress. 2026-04-28 11:54:15 +01:00
bind.h Still making progress. Dropped the archive because it was causing problems. 2026-04-22 21:09:15 +01:00
cond.c Still still doesn't compile. Progress is being made, but it's fair awfy slow. 2026-05-03 14:17:31 +01:00
dump.c Still still doesn't compile. Progress is being made, but it's fair awfy slow. 2026-05-03 14:17:31 +01:00
eq.c Print is less badly broken. Read is less badly broken. GC is too aggressive. 2026-04-24 21:20:23 +01:00
eq.h Still making progress. Dropped the archive because it was causing problems. 2026-04-22 21:09:15 +01:00
eval_apply.c Still grinding incrementally forward, through barbed wire entanglements. 2026-05-03 17:26:53 +01:00
eval_apply.h Still doesn't compile, but I think excellent progress. 2026-04-28 11:54:15 +01:00
inspect.c Still still doesn't compile. Progress is being made, but it's fair awfy slow. 2026-05-03 14:17:31 +01:00
inspect.h Still still doesn't compile. Progress is being made, but it's fair awfy slow. 2026-05-03 14:17:31 +01:00
keys.c Still still doesn't compile. Progress is being made, but it's fair awfy slow. 2026-05-03 14:17:31 +01:00
keys.h Still doesn't compile, but I think excellent progress. 2026-04-28 11:54:15 +01:00
list_ops.c Still doesn't compile, but I think excellent progress. 2026-04-28 11:54:15 +01:00
list_ops.h Still making progress. Dropped the archive because it was causing problems. 2026-04-22 21:09:15 +01:00
mapcar.c Still grinding incrementally forward, through barbed wire entanglements. 2026-05-03 17:26:53 +01:00
mapcar.h Still still doesn't compile. Progress is being made, but it's fair awfy slow. 2026-05-03 14:17:31 +01:00
progn.c Still still doesn't compile. Progress is being made, but it's fair awfy slow. 2026-05-03 14:17:31 +01:00
progn.h Still doesn't compile, but I think excellent progress. 2026-04-28 11:54:15 +01:00
README.md Lots more code written, and I think most of it's OK; but it doesn't compile yet. 2026-03-26 09:01:46 +00:00
repl.c Still still doesn't compile. Progress is being made, but it's fair awfy slow. 2026-05-03 14:17:31 +01:00
repl.h Still making progress. Dropped the archive because it was causing problems. 2026-04-22 21:09:15 +01:00
reverse.c Still grinding incrementally forward, through barbed wire entanglements. 2026-05-03 17:26:53 +01:00
reverse.h Still grinding incrementally forward, through barbed wire entanglements. 2026-05-03 17:26:53 +01:00
stack_ops.c Working on eval/apply. Unfinished, does not build. More significantly, 2026-04-25 21:52:05 +01:00
stack_ops.h Print is less badly broken. Read is less badly broken. GC is too aggressive. 2026-04-24 21:20:23 +01:00
string_ops.c Still grinding incrementally forward, through barbed wire entanglements. 2026-05-03 17:26:53 +01:00
string_ops.h Still doesn't compile, but I think excellent progress. 2026-04-28 11:54:15 +01:00
truth.c Still making progress. Dropped the archive because it was causing problems. 2026-04-22 21:09:15 +01:00
truth.h Still grinding incrementally forward, through barbed wire entanglements. 2026-05-03 17:26:53 +01:00

README: PSSE substrate operations

This folder/pseudo-package is for things which implement basic Lisp functions. These will be the functions which make up the :bootstrap and :substrate packages in Lisp.

For each basic function the intention is that there should be one .c file (and normally one .h file as well). This file will provide one version of the function with Lisp calling conventions, called lisp_xxxx, and one with C calling conventions, called xxxx. It does not matter whether the lisp version calls the C version or vice versa, but one should call the other so there are not two different versions of the logic.

Substrate I/O functions will not be provided in this pseudo-package but in io. Substrate arithmetic functions will not be provided in this pseudo-package but in arith.