We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
+1
Would it be a problem to allow unary plus? It is completely unimportant, but sometimes nice for readability:
f(self._adjust(loc, -1, 0)); f(self._adjust(loc, +1, 0)); // rust 0.3: syntax error f(self._adjust(loc, 0, -1)); f(self._adjust(loc, 0, +1)); // rust 0.3: syntax error