On Thu, Jul 9, 2009 at 1:09 PM, Steven Schveighoffer<schveiguy at yahoo.com> wrote: > Would something like this work? > > (&data)[0..length] Nope; &data is a char[0]*, and slicing it will get you a char[0][]. Which is pretty useless :D