[Mono-list] Donation of PriorityQueue class

Daniel Carrera dcarrera@math.toronto.edu
Sat, 30 Mar 2002 11:26:48 -0500 (EST)


I don't know Mono's plan, but I guess we could always do something like:

#if   !NET_ONLY
class PriorityQueue
{
  ...
}
#endif

We could build a ".NET-only" compile or mono and an "extended" one.

Just a though.

Daniel.


On Sat, 30 Mar 2002, Mike Anderson wrote:

> Hi Guys,
>
> What is the Mono plan as it relates to the inclusion of classes that are
> *not* in the .NET framework?
>
> Only asking because I've recently been implementing a PriorityQueue
> collection class for a game I have been writing and thought you might like
> to include it in Mono. I think it's general enough to be useful in many
> settings (the only obvious specialization is the use of "double" for
> priority values) and the performance is pretty good.
>
> Anyway, here it is if you want it......
>
>
>
>