Re: [rust-dev] Questions about linked lists in Rust

2013-09-02 Thread Tim Chevalier
On Wed, Aug 28, 2013 at 8:22 PM, Nicholas Bishop nicholasbis...@gmail.com wrote: Hi, I'm new to Rust, currently trying out a few simple tests to get a handle on things. I have a few questions about linked lists. I see there are two list modules in extra, one for ~ pointers and one for @

Re: [rust-dev] Questions about linked lists in Rust

2013-09-02 Thread Niko Matsakis
On Mon, Sep 02, 2013 at 04:37:34PM -0700, Tim Chevalier wrote: There are two list modules because one is a singly linked list -- list.rs -- and one is a doubly linked list -- dlist.rs . Off the top of my head I'm not sure if there's a reason why list.rs uses @ pointers. The reason that list