post-scarcity/src/c/memory/cursor.c
2026-03-19 13:59:06 +00:00

9 lines
296 B
C

/*
* a cursor is a cons-space object which holds:
* 1. a pointer to a vector (i.e. a vector-space object which holds an
* array of `cons_pointer`);
* 2. an integer offset into that array.
*
* this provides a mechanism for iterating through vectors (actually, in
* either direction)
*/