Real opIndex(size_t row, size_t col = 0) const pure nothrow {
assert(col + row * Col < Row * Col, "index out of bounds.");
return _data[col + row * Col];
}
Today this assertion failed, and I wanted to see the actual values of row and col. Unfortunetly, assert isn't like writeln or writefln, so I can't do something like:
assert(col + row * Col < Row * Col, "index out of bounds. row: %d col: %d", row, col);
I even tried this:
assert(col + row * Col < Row * Col, "index out of bounds" ~ to!string(row)~ " " ~ to!string(col));
But I can't call to because opIndex is pure. I could temporarily remove pure from opIndex, but that triggers a long chain of undos because other pure methods are calling opIndex. Not being able to call to also eliminates the possibility of creating my own function to pass to assert.
So, What else is there to try? I just want to print such values when assertion fails.