I'm trying to implement my own range in D, and I'm having trouble with its .front() method.
Edit:
I need the return value to be by ref.
If I make it
const, then the returned object will be a copy, which is not what I want.If I don't make it
const, then I can't use.fronton aconstcopy of my range at all.
How do I solve this?
struct MyRange(T)
{
T[] buf;
@property ref T front() { return this.buf[0]; } // No error, but not const
@property ref T front() const { return this.buf[0]; } // Errors
@property T front() const { return this.buf[0]; } // No error, but a copy
// Can't have all three
}