retroforth/example/defstruct.forth
crc 9a8063045f add new example: defining structures
FossilOrigin-Name: e48611cae3febeee73ab18b3bbfffc5a387aa75dfe29fffd476fb9e1d100423d
2018-04-03 21:02:56 +00:00

38 lines
930 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:from-results 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:with-format puts nl ;
&A info
~~~