Previous: built-in structs base, Up: built-in structs [Contents][Index]
<struct-type-descriptor>
typeType of struct–type descriptor objects.
<struct-type-descriptor>
: <struct-type-descriptor> type-constructor name fields<struct-type-descriptor>
: <struct-type-descriptor> type-constructor name fields uidThe constructor if make-struct-type
.
<struct-type-descriptor>
: <boolean>
type-predicate objThe type predicate is struct-type-descriptor?
.
<struct-type-descriptor>
: <string> name thisApply struct-type-name
to the instance and return its return
value.
<struct-type-descriptor>
: <symbol> uid thisApply struct-type-symbol
to the instance and return its return
value.
<struct-type-descriptor>
: (list-of <symbol>) field-names thisApply struct-type-field-names
to the instance and return its
return value.
<struct-type-descriptor>
: <procedure> constructor thisApply struct-type-constructor
to the instance and return its
return value.
<struct-type-descriptor>
: <type-predicate> predicate thisApply struct-type-predicate
to the instance and return its return
value.
<struct-type-descriptor>
: <type-printer> printer thisApply struct-type-printer
to the instance and return its return
value.
<struct-type-descriptor>
: <type-destructor> destructor thisApply struct-type-destructor
to the instance and return its
return value.
<struct-type-descriptor>
: <procedure> field-accessor this {idx <non-negative-fixnum>}<struct-type-descriptor>
: <procedure> field-accessor this {name <symbol>}Apply struct-type-field-accessor
to the instance and return its
return value.
<struct-type-descriptor>
: <procedure> field-mutator this {idx <non-negative-fixnum>}<struct-type-descriptor>
: <procedure> field-mutator this {name <symbol>}Apply struct-type-field-mutator
to the instance and return its
return value.
<struct-type-descriptor>
: <procedure> field-method this {idx <non-negative-fixnum>}<struct-type-descriptor>
: <procedure> field-method this {name <symbol>}Apply struct-type-field-method
to the instance and return its
return value.
Previous: built-in structs base, Up: built-in structs [Contents][Index]