Re: [Newbies] Linked list structure?

2008-07-28 Thread Marcin Tustin
I am aware of LinkedList. It does not meet the criterion of accepting items whatever their protocol. On Mon, Jul 28, 2008 at 7:12 AM, David T. Lewis [EMAIL PROTECTED] wrote: On Sun, Jul 27, 2008 at 10:27:08PM -0400, Marcin Tustin wrote: Is there - either as standard, or freely downloadable -

Re: [Newbies] Invoking MIDIInputParser

2008-07-28 Thread stan shepherd
George Kopeczky wrote: I'm a Squeak newbie with nearly zero programming experience, brought here by a search after a tool that will let me capture, view as hex (and hopefully, save) a rare type of MIDI message (Active Sensing) which is unrecorded by every MIDI sequencing application I

[Newbies] Re: Linked list structure?

2008-07-28 Thread nicolas cellier
Marcin Tustin a écrit : I am aware of LinkedList. It does not meet the criterion of accepting items whatever their protocol. You are right, current implementation of LinkedList is very specialized and restricted. Creating Links transparently would be a plus. Hey, we can use a Dictionary

Re: [Newbies] Re: Linked list structure?

2008-07-28 Thread Marcin Tustin
Yes. I first tried to subclass LinkedList, but I had some trouble with funny behaviours turning up in do:, although I suppose that has probably been eliminated here by using not trying to use super do: as I did. (By funny I mean ending up calling element on the result of element). On Mon, Jul 28,