Re: A multiple-inheritance prototype system

2011-03-07 Thread icemaze
> It looks like you're trying to group together different functionality > in one place. Idiomatic Clojure tends to encourage separating > functionality out into independent components. Thanks for the tip. My system doesn't provide validation, it just differentiates between "nil" and "undefined but

Re: A multiple-inheritance prototype system

2011-03-07 Thread James Reeves
On 7 March 2011 14:05, icemaze wrote: > 1) Was this necessary at all? Can my requirements be fulfilled with > off-the-shelf clojure libraries or components? Requirements include > the ability to merge objects as shown below. It looks like you're trying to group together different functionality in

A multiple-inheritance prototype system

2011-03-07 Thread icemaze
Hi clojure developers! I recently wrote an alternative datatype system for a project of mine, because requirements were a little odd and I couldn't find anything appropriate. My questions are: 1) Was this necessary at all? Can my requirements be fulfilled with off-the-shelf clojure libraries or c