Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Embedded objects.

From: robert:muench:robertmuench at: 15-Mar-2003 12:14

> -----Original Message----- > From: [rebol-bounce--rebol--com] [mailto:[rebol-bounce--rebol--com]] > On Behalf Of Terry Brownell > Sent: Thursday, March 13, 2003 7:01 PM > To: [rebol-list--rebol--com] > Subject: [REBOL] Re: Embedded objects. > What I'm looking for is a method to deal with Semantic > Networks with Rebol... handling IsA and hasPart etc. Needs > to deal with inheritance properly.
Hi, have a look at my rebol-framework (RFM) project at my homepage: http://www.robertmuench.de It uses a graph based storage. Inheritance is mostly a linking topic (a.k.a as vtable) so you can build it on your own. Have a look how the record and graph functions are done to get an idea. Robert