Tagged Questions
0
votes
1answer
52 views
Could you please explain the inout(blah) func() inout {} function prototype in D-programming (dmd 2.059)
class C
{
public:
inout(data) func() inout { return data; }
private:
MyDataType data;
}
There's not much reference on it.