Post Scarcity
A prototype for a post scarcity programming environment
Loading...
Searching...
No Matches
cursor.c
Go to the documentation of this file.
1/*
2 * a cursor is a cons-space object which holds:
3 * 1. a pointer to a vector (i.e. a vector-space object which holds an
4 * array of `cons_pointer`);
5 * 2. an integer offset into that array.
6 *
7 * this provides a mechanism for iterating through vectors (actually, in
8 * either direction)
9 */