Not sure I understand the question, but
-x
is like writing
0 - x
so if you want something like "+x", that would be the same as 0 + x, which is the same as x, so it's unnecessary.
Maybe you want abs(x), which makes x a positive number if negative? ie. abs(5) = 5, abs(-7) = 7