Thread overview
Containers for D2
Mar 15, 2010
Robert Clipsham
Mar 15, 2010
Robert Clipsham
March 15, 2010
Hi all,

Is there a library with some container classes/structs around for D2 yet? More specifically, I'm looking for a CircularList/Queue implementation. I read Andrei was working on something for phobos a while back, it doesn't seem to be available yet though.

Thanks,

Robert
March 15, 2010
On Mon, 15 Mar 2010 16:33:40 -0400, Robert Clipsham <robert@octarineparrot.com> wrote:

> Hi all,
>
> Is there a library with some container classes/structs around for D2 yet? More specifically, I'm looking for a CircularList/Queue implementation. I read Andrei was working on something for phobos a while back, it doesn't seem to be available yet though.

Not yet.  I am in the process of porting dcollections (www.dsource.org/projects/dcollections), but I don't have an ETA, as I have little free time ATM.  Not sure where Andrei is on his lib.

I don't have a Queue or CircularList, although my LinkedList implementation is internally a circularly linked list.  It would be easy to add such a list.

-Steve
March 15, 2010
On 15/03/10 20:38, Steven Schveighoffer wrote:
> Not yet. I am in the process of porting dcollections
> (www.dsource.org/projects/dcollections), but I don't have an ETA, as I
> have little free time ATM. Not sure where Andrei is on his lib.

Thanks, I'll keep an eye on it :)

> I don't have a Queue or CircularList, although my LinkedList
> implementation is internally a circularly linked list. It would be easy
> to add such a list.

I'll see if I can do anything with it, I'm not sure if I'll manage it with the amount of time I've got available to me though.

> -Steve

Thanks for your help :)