diff options
-rw-r--r-- | lib.c | 7 | ||||
-rw-r--r-- | struct.c | 7 | ||||
-rw-r--r-- | struct.h | 1 | ||||
-rw-r--r-- | txr.1 | 2 |
4 files changed, 17 insertions, 0 deletions
@@ -232,6 +232,13 @@ val subtypep(val sub, val sup) } else if (sup == list_s) { return tnil(sub == null_s || sub == cons_s || sub == lcons_s); } else if (sup == sequence_s) { + val sub_struct = find_struct_type(sub); + if (sub_struct) { + if (get_special_slot_by_type(sub_struct, length_m) || + get_special_slot_by_type(sub_struct, car_m)) + return t; + return nil; + } return tnil(sub == str_s || sub == lit_s || sub == lstr_s || sub == vec_s || sub == null_s || sub == cons_s || sub == lcons_s || sub == list_s || sub == string_s); @@ -1773,6 +1773,13 @@ val get_special_slot(val obj, enum special_slot spidx) return get_special_static_slot(si->type, spidx, slot); } +val get_special_slot_by_type(val stype, enum special_slot spidx) +{ + struct struct_type *st = coerce(struct struct_type *, stype->co.handle); + val slot = *special_sym[spidx]; + return get_special_static_slot(st, spidx, slot); +} + static_def(struct cobj_ops struct_type_ops = cobj_ops_init(eq, struct_type_print, struct_type_destroy, struct_type_mark, cobj_eq_hash_op)); @@ -87,5 +87,6 @@ val static_slot_types(val slot); val slot_type_reg(val slot, val strct); val static_slot_type_reg(val slot, val strct); val get_special_slot(val obj, enum special_slot spidx); +val get_special_slot_by_type(val stype, enum special_slot spidx); INLINE int obj_struct_p(val obj) { return obj->co.ops == &struct_inst_ops; } void struct_init(void); @@ -17321,6 +17321,8 @@ brackets indicate a plurality of types which are not listed by name: | | +--- lcons | | | +--- vec + | | + | +--- <structures with car or length methods> | +--- number ---+--- float | | |