retroforth/example/defstruct.forth
crc 95712f74de add { } for making sets
FossilOrigin-Name: 555e617e91a6b391148ff5b113190e3b6675b3657004aecd8294a64fa26f43a4
2018-07-14 15:22:04 +00:00

38 lines
918 B
Forth

LISP provides a function, `defstruct`, which creates a data
structure and functions for accessing various fields in it.
This can be useful, so I'm doing something similar here.
(defstruct book title author subject book-id )
~~~
{{
:make-helper (nsq-) [ d:create , ] dip does ;
:make-struct (ns-) d:create , [ here swap fetch allot ] does ;
---reveal---
:defstruct (sq-)
set:make dup set:length
[ n:dec swap
[ 'ab 'aabab reorder
'@ s:append [ fetch + fetch ] make-helper
'! s:append [ fetch + store ] make-helper
n:dec
] set:for-each drop
] sip swap make-struct ;
}}
~~~
~~~
'book [ 'title 'author 'subject 'book-id ] defstruct
book 'A const
'The_Hobbit s:keep &A title!
'J.R.R._Tolkien s:keep &A author!
'Fantasy s:keep &A subject!
:info (a-)
[ subject@ ] [ author@ ] [ title@ ] tri
'%s_by_%s_is_a_%s_book. s:format s:put nl ;
&A info
~~~