Hi Gregg, Since you are using c objects already, I suppose you are also using the getters, ie (my-vector-element) which would return a scheme string.
You could use a dilamda for the vector, and have a getter like (my-vector) to get all the elements, (my-vector 0) to get an element and (my vector 'meta) for your meta info. Another approach would be to openlet the dilamda and instead call (meta my-vector) On Mon, Jul 26, 2021, 11:21 AM <[email protected]> wrote: > object->let is intended as a low-level portion of a > yet-to-be-written debugger. Perhaps one simple > solution is to use (cons vector data) and pass > that around instead of the bare vector. Most > scheme objects in s7 do not have an associated > let built-in. > > _______________________________________________ > Cmdist mailing list > [email protected] > https://cm-mail.stanford.edu/mailman/listinfo/cmdist >
_______________________________________________ Cmdist mailing list [email protected] https://cm-mail.stanford.edu/mailman/listinfo/cmdist
