struct M{
T opIndex(uint i){ ... }
}
which gives me this:
m[i]
but what if I want it in two dimension so that I could do:
m[i][j]
is there anyway to do this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, you can do the C++ way of returning a temporary object (struct is best in D’s case) which also has an index operator overload.
But a better idea in D is to go for the syntax
m[i, j]:If you still want to use
m[i][j], a nested struct gives you some syntactic leeway: