diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-06-01 07:05:35 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-06-01 07:05:35 -0700 |
commit | cd8cf4f8fd827e428c53f2e6d7fcce5cd9727e7f (patch) | |
tree | 5acb1cb50e758409457f971d3e2fefa484ed9890 /struct.c | |
parent | 8a443d67ef95021529db7eb451479e79fb39b272 (diff) | |
download | txr-cd8cf4f8fd827e428c53f2e6d7fcce5cd9727e7f.tar.gz txr-cd8cf4f8fd827e428c53f2e6d7fcce5cd9727e7f.tar.bz2 txr-cd8cf4f8fd827e428c53f2e6d7fcce5cd9727e7f.zip |
Methods for turning objects into sequences.
Struct objects can now define methods car, cdr and nullify.
With these, they can participate in operations on sequences.
* eval.h (car_s, cdr_s): Declared.
* lib.c (nullify_s): New symbol variable.
(car, cdr): Implement for struct objects via, respectively,
their car and cdr methods.
(tolist): Handle objects by mapping through identity.
(nullify): Implement for objects optionally: if an object
is a struct with a nullify method, use it, otherwise go
through default case of just returning the object.
(empty): Implement for objects that have nullify method.
(obj_init): Initialize nullify_s.
* struct.c (maybe_slot): New function.
* struct.h (maybe_slot): Declared.
* txr.1: Documented car, cdr and nullify method
convention.
Diffstat (limited to 'struct.c')
-rw-r--r-- | struct.c | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -759,6 +759,20 @@ val slot(val strct, val sym) no_such_slot(self, si->type->self, sym); } +val maybe_slot(val strct, val sym) +{ + const val self = lit("slot"); + struct struct_inst *si = struct_handle(strct, self); + + if (symbolp(sym)) { + loc ptr = lookup_slot_load(strct, si, sym); + if (!nullocp(ptr)) + return deref(ptr); + } + + return nil; +} + val slotset(val strct, val sym, val newval) { const val self = lit("slotset"); |