On Sat, Jul 6, 2013 at 5:45 AM, Jason Fager <[email protected]> wrote: > I've started implementing traits for fixed-length vectors with a few macros: > > https://gist.github.com/jfager/5936197 > > I don't have Clone yet, but it should be easy to add. >
As a side note, looking through your code, this is cool: ---- struct Foo([u8,..2]); .... Foo([1u8,2u8]) ---- I had no idea one could define single-item/wrapper structs that way; i.e. like an anonymous member. This is going in my cool tidbits collection. Ashish _______________________________________________ Rust-dev mailing list [email protected] https://mail.mozilla.org/listinfo/rust-dev
