On Monday, 25 November 2013 at 17:38:00 UTC, Lemonfiend wrote: > &_this > vs > _this.ptr > > I had thought those would give the same result, but apparently > not? Think about slice as a struct with two fields - data pointer and data length. `&slice` gives pointer to struct itself, `slice.ptr` yields data pointer.