2 <clause number="14.6.1" title="Unary plus operator">
3 <paragraph>For an operation of the form +x, unary operator overload resolution (<hyperlink>14.2.3</hyperlink>) is applied to select a specific operator implementation. The operand is converted to the parameter type of the selected operator, and the type of the result is the return type of the operator. The predefined unary plus operators are: <code_example><![CDATA[
5 uint operator +(uint x);
6 long operator +(long x);
7 ulong operator +(ulong x);
8 float operator +(float x);
9 double operator +(double x);
10 decimal operator +(decimal x);
11 ]]></code_example></paragraph>
12 <paragraph>For each of these operators, the result is simply the value of the operand. </paragraph>