[REBOL] Getting Rebol Word List Re:(6)
From: larry:ecotope at: 7-Aug-2000 16:19
Hi Tim
>> type? :break
== native!
>> type? :func
== function!
>> type? :add
== action!
>> type? :+
== op!
Any-function is a pseudotype which includes function!, action!, op!, and
native! (i.e. the action any-function? returns true for any of these). Try
help native!
help function!
etc
to get a list of the currently defined values of that type.
Other pseudotypes are series, any-block, and any-string.
This topic is discussed (to some extent) in the docs. Elan's book provides
more info.
HTH
-Larry